···263263 * Just force serial output here rather than using outputf,
264264 * don't let it block us.
265265 */
266266- Serial.printf("\rFlash update progress:% 7d of %d", progress,
267267- total);
266266+ if (progress == 1 || progress % 1024 == 0 || progress == total)
267267+ Serial.printf("\rFlash update progress:% 7d of %d",
268268+ progress, total);
268269 });
269270270271 if ((int)Update.writeStream((tls ? client_tls : client)) != bytesize) {
+1-1
util.cpp
···2626setup(void)
2727{
2828 static_assert(sizeof(struct eeprom_data) < EEPROM_SIZE,
2929- "EEPROM_SIZE is not large enough to hold struct eeprom_data");
2929+ "EEPROM_SIZE < sizeof(struct eeprom_data)");
30303131 EEPROM.begin(EEPROM_SIZE);
3232 settings = (struct eeprom_data *)EEPROM.getDataPtr();
-2
wifippp.h
···8686const int pDTR = 14;
8787const int pDCD = 16;
88888989-9089/* still need to map out */
9190const int pCTS = 0; //15, but responds weirdly when used
9291const int pRTS = 0;
9392const int pRI = 0;
9494-95939694/* pixel.cpp */
9795void pixel_setup(void);