auto-sync

This commit is contained in:
rusEfi 2015-04-13 15:10:36 -05:00
parent 8a4bc98066
commit 8b21c46931
2 changed files with 2 additions and 2 deletions

View File

@ -372,7 +372,7 @@ void handleBurnCommand(ts_channel_s *tsChannel, ts_response_format_e mode, uint1
efitimems_t nowMs = currentTimeMillis();
tsState.burnCommandCounter++;
tunerStudioDebug("got B (Burn)");
scheduleMsg(&tsLogger, "got B (Burn) %s", mode == TS_PLAIN ? "plain" : "CRC");
currentPageId = page;

View File

@ -224,7 +224,7 @@ static void setPinState(const char * msg, OutputPin *pin, LEElement *element, En
if (value != pin->getLogicValue()) {
if (isRunningBenchTest())
return; // let's not mess with bench testing
scheduleMsg(logger, "setPin %s %s", msg, boolToString(value));
scheduleMsg(logger, "setPin %s %s", msg, value ? "on" : "off");
pin->setValue(value);
}
}