Fix cppcheck low violations
This commit is contained in:
parent
926c786705
commit
5c9c9f562f
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -34,7 +34,7 @@ jobs:
|
|||||||
sudo apt-get install -y clang-format-21
|
sudo apt-get install -y clang-format-21
|
||||||
|
|
||||||
- name: Run cppcheck
|
- name: Run cppcheck
|
||||||
run: pio check --fail-on-defect medium --fail-on-defect high
|
run: pio check --fail-on-defect low --fail-on-defect medium --fail-on-defect high
|
||||||
|
|
||||||
- name: Run clang-format
|
- name: Run clang-format
|
||||||
run: PATH="/usr/lib/llvm-21/bin:$PATH" ./bin/clang-format-fix && git diff --exit-code || (echo "Please run 'bin/clang-format-fix' to fix formatting issues" && exit 1)
|
run: PATH="/usr/lib/llvm-21/bin:$PATH" ./bin/clang-format-fix && git diff --exit-code || (echo "Please run 'bin/clang-format-fix' to fix formatting issues" && exit 1)
|
||||||
|
|||||||
@ -21,9 +21,10 @@ class Section {
|
|||||||
int currentPage = 0;
|
int currentPage = 0;
|
||||||
|
|
||||||
explicit Section(const std::shared_ptr<Epub>& epub, const int spineIndex, GfxRenderer& renderer)
|
explicit Section(const std::shared_ptr<Epub>& epub, const int spineIndex, GfxRenderer& renderer)
|
||||||
: epub(epub), spineIndex(spineIndex), renderer(renderer) {
|
: epub(epub),
|
||||||
cachePath = epub->getCachePath() + "/" + std::to_string(spineIndex);
|
spineIndex(spineIndex),
|
||||||
}
|
renderer(renderer),
|
||||||
|
cachePath(epub->getCachePath() + "/" + std::to_string(spineIndex)) {}
|
||||||
~Section() = default;
|
~Section() = default;
|
||||||
bool loadCacheMetadata(int fontId, float lineCompression, int marginTop, int marginRight, int marginBottom,
|
bool loadCacheMetadata(int fontId, float lineCompression, int marginTop, int marginRight, int marginBottom,
|
||||||
int marginLeft, bool extraParagraphSpacing);
|
int marginLeft, bool extraParagraphSpacing);
|
||||||
|
|||||||
@ -9,8 +9,8 @@ framework = arduino
|
|||||||
monitor_speed = 115200
|
monitor_speed = 115200
|
||||||
upload_speed = 921600
|
upload_speed = 921600
|
||||||
check_tool = cppcheck
|
check_tool = cppcheck
|
||||||
|
check_flags = --enable=all --suppress=missingIncludeSystem --suppress=unusedFunction --suppress=unmatchedSuppression --inline-suppr
|
||||||
check_skip_packages = yes
|
check_skip_packages = yes
|
||||||
check_severity = medium, high
|
|
||||||
|
|
||||||
board_upload.flash_size = 16MB
|
board_upload.flash_size = 16MB
|
||||||
board_upload.maximum_size = 16777216
|
board_upload.maximum_size = 16777216
|
||||||
|
|||||||
@ -111,13 +111,13 @@ bool WifiCredentialStore::loadFromFile() {
|
|||||||
|
|
||||||
bool WifiCredentialStore::addCredential(const std::string& ssid, const std::string& password) {
|
bool WifiCredentialStore::addCredential(const std::string& ssid, const std::string& password) {
|
||||||
// Check if this SSID already exists and update it
|
// Check if this SSID already exists and update it
|
||||||
for (auto& cred : credentials) {
|
const auto cred = find_if(credentials.begin(), credentials.end(),
|
||||||
if (cred.ssid == ssid) {
|
[&ssid](const WifiCredential& cred) { return cred.ssid == ssid; });
|
||||||
cred.password = password;
|
if (cred != credentials.end()) {
|
||||||
|
cred->password = password;
|
||||||
Serial.printf("[%lu] [WCS] Updated credentials for: %s\n", millis(), ssid.c_str());
|
Serial.printf("[%lu] [WCS] Updated credentials for: %s\n", millis(), ssid.c_str());
|
||||||
return saveToFile();
|
return saveToFile();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Check if we've reached the limit
|
// Check if we've reached the limit
|
||||||
if (credentials.size() >= MAX_NETWORKS) {
|
if (credentials.size() >= MAX_NETWORKS) {
|
||||||
@ -132,22 +132,24 @@ bool WifiCredentialStore::addCredential(const std::string& ssid, const std::stri
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool WifiCredentialStore::removeCredential(const std::string& ssid) {
|
bool WifiCredentialStore::removeCredential(const std::string& ssid) {
|
||||||
for (auto it = credentials.begin(); it != credentials.end(); ++it) {
|
const auto cred = find_if(credentials.begin(), credentials.end(),
|
||||||
if (it->ssid == ssid) {
|
[&ssid](const WifiCredential& cred) { return cred.ssid == ssid; });
|
||||||
credentials.erase(it);
|
if (cred != credentials.end()) {
|
||||||
|
credentials.erase(cred);
|
||||||
Serial.printf("[%lu] [WCS] Removed credentials for: %s\n", millis(), ssid.c_str());
|
Serial.printf("[%lu] [WCS] Removed credentials for: %s\n", millis(), ssid.c_str());
|
||||||
return saveToFile();
|
return saveToFile();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return false; // Not found
|
return false; // Not found
|
||||||
}
|
}
|
||||||
|
|
||||||
const WifiCredential* WifiCredentialStore::findCredential(const std::string& ssid) const {
|
const WifiCredential* WifiCredentialStore::findCredential(const std::string& ssid) const {
|
||||||
for (const auto& cred : credentials) {
|
const auto cred = find_if(credentials.begin(), credentials.end(),
|
||||||
if (cred.ssid == ssid) {
|
[&ssid](const WifiCredential& cred) { return cred.ssid == ssid; });
|
||||||
return &cred;
|
|
||||||
}
|
if (cred != credentials.end()) {
|
||||||
|
return &*cred;
|
||||||
}
|
}
|
||||||
|
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
#include "SleepActivity.h"
|
#include "SleepActivity.h"
|
||||||
|
|
||||||
#include <GfxRenderer.h>
|
#include <GfxRenderer.h>
|
||||||
|
#include <SD.h>
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "CrossPointSettings.h"
|
#include "CrossPointSettings.h"
|
||||||
#include "SD.h"
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "images/CrossLarge.h"
|
#include "images/CrossLarge.h"
|
||||||
|
|
||||||
|
|||||||
@ -217,8 +217,7 @@ void CrossPointWebServerActivity::render() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CrossPointWebServerActivity::renderServerRunning() const {
|
void CrossPointWebServerActivity::renderServerRunning() const {
|
||||||
const auto pageWidth = GfxRenderer::getScreenWidth();
|
const auto pageHeight = renderer.getScreenHeight();
|
||||||
const auto pageHeight = GfxRenderer::getScreenHeight();
|
|
||||||
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
||||||
const auto top = (pageHeight - height * 5) / 2;
|
const auto top = (pageHeight - height * 5) / 2;
|
||||||
|
|
||||||
@ -226,7 +225,7 @@ void CrossPointWebServerActivity::renderServerRunning() const {
|
|||||||
|
|
||||||
std::string ssidInfo = "Network: " + connectedSSID;
|
std::string ssidInfo = "Network: " + connectedSSID;
|
||||||
if (ssidInfo.length() > 28) {
|
if (ssidInfo.length() > 28) {
|
||||||
ssidInfo = ssidInfo.substr(0, 25) + "...";
|
ssidInfo.replace(25, ssidInfo.length() - 25, "...");
|
||||||
}
|
}
|
||||||
renderer.drawCenteredText(UI_FONT_ID, top + 10, ssidInfo.c_str(), true, REGULAR);
|
renderer.drawCenteredText(UI_FONT_ID, top + 10, ssidInfo.c_str(), true, REGULAR);
|
||||||
|
|
||||||
|
|||||||
@ -138,6 +138,7 @@ void WifiSelectionActivity::processWifiScanResults() {
|
|||||||
// Convert map to vector
|
// Convert map to vector
|
||||||
networks.clear();
|
networks.clear();
|
||||||
for (const auto& pair : uniqueNetworks) {
|
for (const auto& pair : uniqueNetworks) {
|
||||||
|
// cppcheck-suppress useStlAlgorithm
|
||||||
networks.push_back(pair.second);
|
networks.push_back(pair.second);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -334,11 +335,10 @@ void WifiSelectionActivity::loop() {
|
|||||||
// User chose "Yes" - forget the network
|
// User chose "Yes" - forget the network
|
||||||
WIFI_STORE.removeCredential(selectedSSID);
|
WIFI_STORE.removeCredential(selectedSSID);
|
||||||
// Update the network list to reflect the change
|
// Update the network list to reflect the change
|
||||||
for (auto& network : networks) {
|
const auto network = find_if(networks.begin(), networks.end(),
|
||||||
if (network.ssid == selectedSSID) {
|
[this](const WifiNetworkInfo& net) { return net.ssid == selectedSSID; });
|
||||||
network.hasSavedPassword = false;
|
if (network != networks.end()) {
|
||||||
break;
|
network->hasSavedPassword = false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Go back to network list
|
// Go back to network list
|
||||||
@ -468,8 +468,8 @@ void WifiSelectionActivity::render() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void WifiSelectionActivity::renderNetworkList() const {
|
void WifiSelectionActivity::renderNetworkList() const {
|
||||||
const auto pageWidth = GfxRenderer::getScreenWidth();
|
const auto pageWidth = renderer.getScreenWidth();
|
||||||
const auto pageHeight = GfxRenderer::getScreenHeight();
|
const auto pageHeight = renderer.getScreenHeight();
|
||||||
|
|
||||||
// Draw header
|
// Draw header
|
||||||
renderer.drawCenteredText(READER_FONT_ID, 10, "WiFi Networks", true, BOLD);
|
renderer.drawCenteredText(READER_FONT_ID, 10, "WiFi Networks", true, BOLD);
|
||||||
@ -506,7 +506,7 @@ void WifiSelectionActivity::renderNetworkList() const {
|
|||||||
// Draw network name (truncate if too long)
|
// Draw network name (truncate if too long)
|
||||||
std::string displayName = network.ssid;
|
std::string displayName = network.ssid;
|
||||||
if (displayName.length() > 16) {
|
if (displayName.length() > 16) {
|
||||||
displayName = displayName.substr(0, 13) + "...";
|
displayName.replace(13, displayName.length() - 13, "...");
|
||||||
}
|
}
|
||||||
renderer.drawText(UI_FONT_ID, 20, networkY, displayName.c_str());
|
renderer.drawText(UI_FONT_ID, 20, networkY, displayName.c_str());
|
||||||
|
|
||||||
@ -544,15 +544,13 @@ void WifiSelectionActivity::renderNetworkList() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void WifiSelectionActivity::renderPasswordEntry() const {
|
void WifiSelectionActivity::renderPasswordEntry() const {
|
||||||
const auto pageHeight = GfxRenderer::getScreenHeight();
|
|
||||||
|
|
||||||
// Draw header
|
// Draw header
|
||||||
renderer.drawCenteredText(READER_FONT_ID, 5, "WiFi Password", true, BOLD);
|
renderer.drawCenteredText(READER_FONT_ID, 5, "WiFi Password", true, BOLD);
|
||||||
|
|
||||||
// Draw network name with good spacing from header
|
// Draw network name with good spacing from header
|
||||||
std::string networkInfo = "Network: " + selectedSSID;
|
std::string networkInfo = "Network: " + selectedSSID;
|
||||||
if (networkInfo.length() > 30) {
|
if (networkInfo.length() > 30) {
|
||||||
networkInfo = networkInfo.substr(0, 27) + "...";
|
networkInfo.replace(27, networkInfo.length() - 27, "...");
|
||||||
}
|
}
|
||||||
renderer.drawCenteredText(UI_FONT_ID, 38, networkInfo.c_str(), true, REGULAR);
|
renderer.drawCenteredText(UI_FONT_ID, 38, networkInfo.c_str(), true, REGULAR);
|
||||||
|
|
||||||
@ -563,7 +561,7 @@ void WifiSelectionActivity::renderPasswordEntry() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void WifiSelectionActivity::renderConnecting() const {
|
void WifiSelectionActivity::renderConnecting() const {
|
||||||
const auto pageHeight = GfxRenderer::getScreenHeight();
|
const auto pageHeight = renderer.getScreenHeight();
|
||||||
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
||||||
const auto top = (pageHeight - height) / 2;
|
const auto top = (pageHeight - height) / 2;
|
||||||
|
|
||||||
@ -574,15 +572,14 @@ void WifiSelectionActivity::renderConnecting() const {
|
|||||||
|
|
||||||
std::string ssidInfo = "to " + selectedSSID;
|
std::string ssidInfo = "to " + selectedSSID;
|
||||||
if (ssidInfo.length() > 25) {
|
if (ssidInfo.length() > 25) {
|
||||||
ssidInfo = ssidInfo.substr(0, 22) + "...";
|
ssidInfo.replace(22, ssidInfo.length() - 22, "...");
|
||||||
}
|
}
|
||||||
renderer.drawCenteredText(UI_FONT_ID, top, ssidInfo.c_str(), true, REGULAR);
|
renderer.drawCenteredText(UI_FONT_ID, top, ssidInfo.c_str(), true, REGULAR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void WifiSelectionActivity::renderConnected() const {
|
void WifiSelectionActivity::renderConnected() const {
|
||||||
const auto pageWidth = GfxRenderer::getScreenWidth();
|
const auto pageHeight = renderer.getScreenHeight();
|
||||||
const auto pageHeight = GfxRenderer::getScreenHeight();
|
|
||||||
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
||||||
const auto top = (pageHeight - height * 4) / 2;
|
const auto top = (pageHeight - height * 4) / 2;
|
||||||
|
|
||||||
@ -590,7 +587,7 @@ void WifiSelectionActivity::renderConnected() const {
|
|||||||
|
|
||||||
std::string ssidInfo = "Network: " + selectedSSID;
|
std::string ssidInfo = "Network: " + selectedSSID;
|
||||||
if (ssidInfo.length() > 28) {
|
if (ssidInfo.length() > 28) {
|
||||||
ssidInfo = ssidInfo.substr(0, 25) + "...";
|
ssidInfo.replace(25, ssidInfo.length() - 25, "...");
|
||||||
}
|
}
|
||||||
renderer.drawCenteredText(UI_FONT_ID, top + 10, ssidInfo.c_str(), true, REGULAR);
|
renderer.drawCenteredText(UI_FONT_ID, top + 10, ssidInfo.c_str(), true, REGULAR);
|
||||||
|
|
||||||
@ -601,8 +598,8 @@ void WifiSelectionActivity::renderConnected() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void WifiSelectionActivity::renderSavePrompt() const {
|
void WifiSelectionActivity::renderSavePrompt() const {
|
||||||
const auto pageWidth = GfxRenderer::getScreenWidth();
|
const auto pageWidth = renderer.getScreenWidth();
|
||||||
const auto pageHeight = GfxRenderer::getScreenHeight();
|
const auto pageHeight = renderer.getScreenHeight();
|
||||||
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
||||||
const auto top = (pageHeight - height * 3) / 2;
|
const auto top = (pageHeight - height * 3) / 2;
|
||||||
|
|
||||||
@ -610,7 +607,7 @@ void WifiSelectionActivity::renderSavePrompt() const {
|
|||||||
|
|
||||||
std::string ssidInfo = "Network: " + selectedSSID;
|
std::string ssidInfo = "Network: " + selectedSSID;
|
||||||
if (ssidInfo.length() > 28) {
|
if (ssidInfo.length() > 28) {
|
||||||
ssidInfo = ssidInfo.substr(0, 25) + "...";
|
ssidInfo.replace(25, ssidInfo.length() - 25, "...");
|
||||||
}
|
}
|
||||||
renderer.drawCenteredText(UI_FONT_ID, top, ssidInfo.c_str(), true, REGULAR);
|
renderer.drawCenteredText(UI_FONT_ID, top, ssidInfo.c_str(), true, REGULAR);
|
||||||
|
|
||||||
@ -641,7 +638,7 @@ void WifiSelectionActivity::renderSavePrompt() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void WifiSelectionActivity::renderConnectionFailed() const {
|
void WifiSelectionActivity::renderConnectionFailed() const {
|
||||||
const auto pageHeight = GfxRenderer::getScreenHeight();
|
const auto pageHeight = renderer.getScreenHeight();
|
||||||
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
||||||
const auto top = (pageHeight - height * 2) / 2;
|
const auto top = (pageHeight - height * 2) / 2;
|
||||||
|
|
||||||
@ -651,8 +648,8 @@ void WifiSelectionActivity::renderConnectionFailed() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void WifiSelectionActivity::renderForgetPrompt() const {
|
void WifiSelectionActivity::renderForgetPrompt() const {
|
||||||
const auto pageWidth = GfxRenderer::getScreenWidth();
|
const auto pageWidth = renderer.getScreenWidth();
|
||||||
const auto pageHeight = GfxRenderer::getScreenHeight();
|
const auto pageHeight = renderer.getScreenHeight();
|
||||||
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
const auto height = renderer.getLineHeight(UI_FONT_ID);
|
||||||
const auto top = (pageHeight - height * 3) / 2;
|
const auto top = (pageHeight - height * 3) / 2;
|
||||||
|
|
||||||
@ -660,7 +657,7 @@ void WifiSelectionActivity::renderForgetPrompt() const {
|
|||||||
|
|
||||||
std::string ssidInfo = "Network: " + selectedSSID;
|
std::string ssidInfo = "Network: " + selectedSSID;
|
||||||
if (ssidInfo.length() > 28) {
|
if (ssidInfo.length() > 28) {
|
||||||
ssidInfo = ssidInfo.substr(0, 25) + "...";
|
ssidInfo.replace(25, ssidInfo.length() - 25, "...");
|
||||||
}
|
}
|
||||||
renderer.drawCenteredText(UI_FONT_ID, top, ssidInfo.c_str(), true, REGULAR);
|
renderer.drawCenteredText(UI_FONT_ID, top, ssidInfo.c_str(), true, REGULAR);
|
||||||
|
|
||||||
|
|||||||
@ -383,9 +383,7 @@ void CrossPointWebServer::handleFileList() {
|
|||||||
// Folders come first
|
// Folders come first
|
||||||
if (a.isDirectory != b.isDirectory) return a.isDirectory > b.isDirectory;
|
if (a.isDirectory != b.isDirectory) return a.isDirectory > b.isDirectory;
|
||||||
// Then sort by epub status (epubs first among files)
|
// Then sort by epub status (epubs first among files)
|
||||||
if (!a.isDirectory && !b.isDirectory) {
|
|
||||||
if (a.isEpub != b.isEpub) return a.isEpub > b.isEpub;
|
if (a.isEpub != b.isEpub) return a.isEpub > b.isEpub;
|
||||||
}
|
|
||||||
// Then alphabetically
|
// Then alphabetically
|
||||||
return a.name < b.name;
|
return a.name < b.name;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -383,7 +383,7 @@ void EpubReaderActivity::renderStatusBar() const {
|
|||||||
title = tocItem.title;
|
title = tocItem.title;
|
||||||
titleWidth = renderer.getTextWidth(SMALL_FONT_ID, title.c_str());
|
titleWidth = renderer.getTextWidth(SMALL_FONT_ID, title.c_str());
|
||||||
while (titleWidth > availableTextWidth && title.length() > 11) {
|
while (titleWidth > availableTextWidth && title.length() > 11) {
|
||||||
title = title.substr(0, title.length() - 8) + "...";
|
title.replace(title.length() - 8, 8, "...");
|
||||||
titleWidth = renderer.getTextWidth(SMALL_FONT_ID, title.c_str());
|
titleWidth = renderer.getTextWidth(SMALL_FONT_ID, title.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -93,7 +93,7 @@ void FileSelectionActivity::loop() {
|
|||||||
}
|
}
|
||||||
} else if (inputManager.wasPressed(InputManager::BTN_BACK)) {
|
} else if (inputManager.wasPressed(InputManager::BTN_BACK)) {
|
||||||
if (basepath != "/") {
|
if (basepath != "/") {
|
||||||
basepath = basepath.substr(0, basepath.rfind('/'));
|
basepath.replace(basepath.find_last_of('/'), std::string::npos, "");
|
||||||
if (basepath.empty()) basepath = "/";
|
if (basepath.empty()) basepath = "/";
|
||||||
loadFiles();
|
loadFiles();
|
||||||
updateRequired = true;
|
updateRequired = true;
|
||||||
|
|||||||
@ -20,7 +20,7 @@ KeyboardEntryActivity::KeyboardEntryActivity(GfxRenderer& renderer, InputManager
|
|||||||
void KeyboardEntryActivity::setText(const std::string& newText) {
|
void KeyboardEntryActivity::setText(const std::string& newText) {
|
||||||
text = newText;
|
text = newText;
|
||||||
if (maxLength > 0 && text.length() > maxLength) {
|
if (maxLength > 0 && text.length() > maxLength) {
|
||||||
text = text.substr(0, maxLength);
|
text.resize(maxLength);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
19
src/main.cpp
19
src/main.cpp
@ -5,7 +5,6 @@
|
|||||||
#include <InputManager.h>
|
#include <InputManager.h>
|
||||||
#include <SD.h>
|
#include <SD.h>
|
||||||
#include <SPI.h>
|
#include <SPI.h>
|
||||||
#include <WiFi.h>
|
|
||||||
#include <builtinFonts/bookerly_2b.h>
|
#include <builtinFonts/bookerly_2b.h>
|
||||||
#include <builtinFonts/bookerly_bold_2b.h>
|
#include <builtinFonts/bookerly_bold_2b.h>
|
||||||
#include <builtinFonts/bookerly_bold_italic_2b.h>
|
#include <builtinFonts/bookerly_bold_italic_2b.h>
|
||||||
@ -203,20 +202,18 @@ void setup() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
static unsigned long lastLoopTime = 0;
|
|
||||||
static unsigned long maxLoopDuration = 0;
|
static unsigned long maxLoopDuration = 0;
|
||||||
|
const unsigned long loopStartTime = millis();
|
||||||
unsigned long loopStartTime = millis();
|
|
||||||
|
|
||||||
static unsigned long lastMemPrint = 0;
|
static unsigned long lastMemPrint = 0;
|
||||||
|
|
||||||
|
inputManager.update();
|
||||||
|
|
||||||
if (Serial && millis() - lastMemPrint >= 10000) {
|
if (Serial && millis() - lastMemPrint >= 10000) {
|
||||||
Serial.printf("[%lu] [MEM] Free: %d bytes, Total: %d bytes, Min Free: %d bytes\n", millis(), ESP.getFreeHeap(),
|
Serial.printf("[%lu] [MEM] Free: %d bytes, Total: %d bytes, Min Free: %d bytes\n", millis(), ESP.getFreeHeap(),
|
||||||
ESP.getHeapSize(), ESP.getMinFreeHeap());
|
ESP.getHeapSize(), ESP.getMinFreeHeap());
|
||||||
lastMemPrint = millis();
|
lastMemPrint = millis();
|
||||||
}
|
}
|
||||||
|
|
||||||
inputManager.update();
|
|
||||||
|
|
||||||
// Check for any user activity (button press or release)
|
// Check for any user activity (button press or release)
|
||||||
static unsigned long lastActivityTime = millis();
|
static unsigned long lastActivityTime = millis();
|
||||||
if (inputManager.wasAnyPressed() || inputManager.wasAnyReleased()) {
|
if (inputManager.wasAnyPressed() || inputManager.wasAnyReleased()) {
|
||||||
@ -237,13 +234,13 @@ void loop() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long activityStartTime = millis();
|
const unsigned long activityStartTime = millis();
|
||||||
if (currentActivity) {
|
if (currentActivity) {
|
||||||
currentActivity->loop();
|
currentActivity->loop();
|
||||||
}
|
}
|
||||||
unsigned long activityDuration = millis() - activityStartTime;
|
const unsigned long activityDuration = millis() - activityStartTime;
|
||||||
|
|
||||||
unsigned long loopDuration = millis() - loopStartTime;
|
const unsigned long loopDuration = millis() - loopStartTime;
|
||||||
if (loopDuration > maxLoopDuration) {
|
if (loopDuration > maxLoopDuration) {
|
||||||
maxLoopDuration = loopDuration;
|
maxLoopDuration = loopDuration;
|
||||||
if (maxLoopDuration > 50) {
|
if (maxLoopDuration > 50) {
|
||||||
@ -252,8 +249,6 @@ void loop() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
lastLoopTime = loopStartTime;
|
|
||||||
|
|
||||||
// Add delay at the end of the loop to prevent tight spinning
|
// Add delay at the end of the loop to prevent tight spinning
|
||||||
// When an activity requests skip loop delay (e.g., webserver running), use yield() for faster response
|
// When an activity requests skip loop delay (e.g., webserver running), use yield() for faster response
|
||||||
// Otherwise, use longer delay to save power
|
// Otherwise, use longer delay to save power
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user