auto-sync
This commit is contained in:
parent
8ca574e53e
commit
a3ad82682f
|
@ -945,7 +945,9 @@ static void printAllInfo(void) {
|
|||
}
|
||||
|
||||
static void getValue(const char *paramStr) {
|
||||
if (strEqualCaseInsensitive(paramStr, "warningPeriod")) {
|
||||
if (strEqualCaseInsensitive(paramStr, "isCJ125Enabled")) {
|
||||
scheduleMsg(&logger, "isCJ125Enabled=%d", boardConfiguration->isCJ125Enabled);
|
||||
} else if (strEqualCaseInsensitive(paramStr, "warningPeriod")) {
|
||||
scheduleMsg(&logger, "warningPeriod=%d", engineConfiguration->warningPeriod);
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
#define CJ125_NORMAL 0x89 // 137 decimal
|
||||
#define CJ125_CALBRT 0x9D // 157 decimal
|
||||
|
||||
#define CJ125_IDENTT 0x60
|
||||
|
||||
|
||||
void initCJ125(Logging *shared);
|
||||
|
||||
typedef enum {
|
||||
|
|
Loading…
Reference in New Issue