Replace buffer lock magic numbers with defines (#5217)

* replace magic numbers with defines
This commit is contained in:
Damian Schneider
2026-01-30 08:14:53 +01:00
committed by GitHub
parent c9f47d4b5c
commit 1031e70d70
18 changed files with 49 additions and 24 deletions

View File

@@ -102,7 +102,7 @@ void handleSerial()
else if (next == 'O') { continuousSendLED = true; } // Enable Continuous Serial Streaming
else if (next == '{') { //JSON API
bool verboseResponse = false;
if (!requestJSONBufferLock(16)) {
if (!requestJSONBufferLock(JSON_LOCK_SERIAL)) {
Serial.printf_P(PSTR("{\"error\":%d}\n"), ERR_NOBUF);
return;
}