Merge remote-tracking branch 'emsesp/core3' into core3

This commit is contained in:
MichaelDvP
2026-05-24 18:01:07 +02:00
86 changed files with 1406 additions and 925 deletions

View File

@@ -572,11 +572,11 @@ bool TxService::send_raw(const char * telegram_data) {
return false;
}
// since the telegram data is a const, make a copy. add 1 to grab the \0 EOS
// since the telegram data is a const, make a copy
char * telegram = strdup(telegram_data);
uint8_t count = 0;
uint8_t data[256];
uint8_t data[256]; // max raw telegram length
// get values
char * p = strtok(telegram, " ,"); // delimiter
@@ -700,4 +700,4 @@ uint16_t TxService::post_send_query() {
return post_typeid;
}
} // namespace emsesp
} // namespace emsesp