* fix: show save message
* fix: removed serial newline for `enqueueCmd`
This commit is contained in:
lumapu 2023-03-26 01:03:59 +01:00
parent 02dc025814
commit 081adeb140
4 changed files with 7 additions and 3 deletions

View file

@ -144,7 +144,7 @@ class Inverter {
void enqueCommand(uint8_t cmd) {
_commandQueue.push(std::make_shared<T>(cmd));
DPRINT_IVID(DBG_INFO, id);
DBGPRINTLN(F("enqueCommand: 0x"));
DBGPRINT(F("enqueCommand: 0x"));
DBGHEXLN(cmd);
}