Skip to content

Commit 4b20f9b

Browse files
committed
Clang
1 parent bab6e25 commit 4b20f9b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/i2c/WipperSnapper_I2C.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ WipperSnapper_Component_I2C::scanAddresses() {
158158
WS_DEBUG_PRINTLN("[i2c]: Scanning I2C Bus for Devices...");
159159
for (uint8_t address = 1; address < 127; ++address) {
160160
WS_DEBUG_PRINT("[i2c] Scanning Address: 0x");
161-
WS_DEBUG_PRINTHEX(address); WS_DEBUG_PRINTLN("");
161+
WS_DEBUG_PRINTHEX(address);
162+
WS_DEBUG_PRINTLN("");
162163
_i2c->beginTransmission(address);
163164
uint8_t endTransmissionRC = _i2c->endTransmission();
164165

src/provisioning/littlefs/WipperSnapper_LittleFS.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ void WipperSnapper_LittleFS::parseSecrets() {
104104
if (i >= 3) {
105105
WS_DEBUG_PRINT("WARNING: More than 3 networks in secrets.json, "
106106
"only the first 3 will be used. Not using ");
107-
WS_DEBUG_PRINTLNVAR(altnetworks[i]["network_ssid"].as<const char *>());
107+
WS_DEBUG_PRINTLNVAR(
108+
altnetworks[i]["network_ssid"].as<const char *>());
108109
break;
109110
}
110111
convertFromJson(altnetworks[i], WS._multiNetworks[i]);

0 commit comments

Comments
 (0)