diff --git a/cube/User/Src/cmdHandler.c b/cube/User/Src/cmdHandler.c index c57f056..b06d8f8 100644 --- a/cube/User/Src/cmdHandler.c +++ b/cube/User/Src/cmdHandler.c @@ -46,9 +46,11 @@ int8_t cmdExecuteCommand(uint8_t *cmd, bool resetConfigMode) { send(CMD_SOCK, GOODBYE_MSG, sizeof(GOODBYE_MSG)); retCode = -1; } else if (0 == strcmp(cmd, "enable")) { + coloredMsg(LOG_YELLOW, "cec, enable config mode"); configMode = true; retCode = 1; } else if (0 == strcmp(cmd, "disable")) { + coloredMsg(LOG_YELLOW, "cec, disable config mode"); configMode = false; retCode = 2; }