Misc cleanup, whitespace

This commit is contained in:
Scott Lahteine
2020-02-01 03:50:26 -06:00
parent e64b7a3ab2
commit 43d3463d5d
5 changed files with 10 additions and 11 deletions

View File

@ -292,7 +292,7 @@ int32_t SdVolume::freeClusterCount() {
if (cacheBuffer_.fat32[i] == 0) free++;
}
#ifdef ESP32
// Needed to reset the idle task watchdog timer on ESP32 as reading the complete FAT may easily
// Needed to reset the idle task watchdog timer on ESP32 as reading the complete FAT may easily
// block for 10+ seconds. yield() is insufficient since it blocks lower prio tasks (e.g., idle).
static millis_t nextTaskTime = 0;
const millis_t ms = millis();