mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-22 13:26:10 +02:00
review #804
This commit is contained in:
parent
a1fb4aa911
commit
3f2e40848e
3 changed files with 17 additions and 41 deletions
|
@ -144,10 +144,8 @@ class Inverter {
|
|||
void enqueCommand(uint8_t cmd) {
|
||||
_commandQueue.push(std::make_shared<T>(cmd));
|
||||
DPRINT_IVID(DBG_INFO, id);
|
||||
//DPRINT(DBG_INFO, F("(#"));
|
||||
//DBGPRINT(String(id));
|
||||
DBGPRINTLN(F("enqueCommand: 0x") + String(cmd, HEX));
|
||||
//DBGHEXLN(cmd);
|
||||
DBGPRINTLN(F("enqueCommand: 0x"));
|
||||
DBGHEXLN(cmd);
|
||||
}
|
||||
|
||||
void setQueuedCmdFinished() {
|
||||
|
@ -305,7 +303,8 @@ class Inverter {
|
|||
DPRINTLN(DBG_DEBUG, "add config");
|
||||
if (getPosByChFld(0, FLD_ACT_ACTIVE_PWR_LIMIT, rec) == pos){
|
||||
actPowerLimit = rec->record[pos];
|
||||
DPRINTLN(DBG_DEBUG, F("Inverter actual power limit: ") + String(actPowerLimit, 1));
|
||||
DPRINT(DBG_DEBUG, F("Inverter actual power limit: "));
|
||||
DBGPRINTLN(String(actPowerLimit, 1));
|
||||
}
|
||||
}
|
||||
else if (rec->assign == AlarmDataAssignment) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue