fix: Indicator display (#173)

* disable some logs which potentially lead to crash

* indicator: hw rotation + increase frequency

* PSRAM display buffer allocation

* define fast mem

* revert frequency to 6M (to avoid drift)

* trunk fmt
This commit is contained in:
Manuel
2025-08-07 23:34:09 +02:00
committed by GitHub
parent c75d545bf9
commit dec28a4630
6 changed files with 40 additions and 19 deletions
+2 -2
View File
@@ -104,8 +104,8 @@ bool LogRotate::write(const ILogEntry &entry)
currentSize += entry.size();
totalSize += entry.size();
ILOG_DEBUG("LogRotate: %d bytes written in %d ms to %s (%d/%d bytes, total: %d)", entry.size(), millis() - start,
currentLogName.c_str(), currentSize, c_maxFileSize, totalSize);
// ILOG_DEBUG("LogRotate: %d bytes written in %d ms to %s (%d/%d bytes, total: %d)", entry.size(), millis() - start,
// currentLogName.c_str(), currentSize, c_maxFileSize, totalSize);
return true;
}