auto-sync

This commit is contained in:
rusEfi 2016-07-22 17:03:21 -04:00
parent 849dbfabbe
commit e3f427050f
3 changed files with 4 additions and 4 deletions

View File

@ -1711,10 +1711,10 @@ typedef enum {
CUSTOM_OBD_40 = 6040,
CUSTOM_OBD_41 = 6041,
CUSTOM_OBD_42 = 6042,
CUSTOM_OBD_43 = 6043,
CUSTOM_OBD_MMC_ERROR = 6043,
CUSTOM_OBD_44 = 6044,
CUSTOM_OBD_45 = 6045,
CUSTOM_OBD_46 = 6046,
CUSTOM_OBD_SKIPPED_FUEL = 6046,
CUSTOM_OBD_47 = 6047,
CUSTOM_OBD_48 = 6048,
CUSTOM_OBD_49 = 6049,

View File

@ -152,7 +152,7 @@ static ALWAYS_INLINE void handleFuelInjectionEvent(int eventIndex, bool limitedF
if (rpm > 2 * engineConfiguration->cranking.rpm) {
const char *outputName = event->output->name;
if (prevOutputName == outputName) {
warning(CUSTOM_OBD_46, "looks like skipped fuel event");
warning(CUSTOM_OBD_SKIPPED_FUEL, "looks like skipped fuel event");
}
prevOutputName = outputName;
}

View File

@ -283,7 +283,7 @@ static void MMCmount(void) {
// Performs the initialization procedure on the inserted card.
lockSpi(SPI_NONE);
if (mmcConnect(&MMCD1) != CH_SUCCESS) {
warning(CUSTOM_OBD_43, "Can't connect or mount MMC/SD");
warning(CUSTOM_OBD_MMC_ERROR, "Can't connect or mount MMC/SD");
unlockSpi();
return;