auto-sync
This commit is contained in:
parent
849dbfabbe
commit
e3f427050f
|
@ -1711,10 +1711,10 @@ typedef enum {
|
||||||
CUSTOM_OBD_40 = 6040,
|
CUSTOM_OBD_40 = 6040,
|
||||||
CUSTOM_OBD_41 = 6041,
|
CUSTOM_OBD_41 = 6041,
|
||||||
CUSTOM_OBD_42 = 6042,
|
CUSTOM_OBD_42 = 6042,
|
||||||
CUSTOM_OBD_43 = 6043,
|
CUSTOM_OBD_MMC_ERROR = 6043,
|
||||||
CUSTOM_OBD_44 = 6044,
|
CUSTOM_OBD_44 = 6044,
|
||||||
CUSTOM_OBD_45 = 6045,
|
CUSTOM_OBD_45 = 6045,
|
||||||
CUSTOM_OBD_46 = 6046,
|
CUSTOM_OBD_SKIPPED_FUEL = 6046,
|
||||||
CUSTOM_OBD_47 = 6047,
|
CUSTOM_OBD_47 = 6047,
|
||||||
CUSTOM_OBD_48 = 6048,
|
CUSTOM_OBD_48 = 6048,
|
||||||
CUSTOM_OBD_49 = 6049,
|
CUSTOM_OBD_49 = 6049,
|
||||||
|
|
|
@ -152,7 +152,7 @@ static ALWAYS_INLINE void handleFuelInjectionEvent(int eventIndex, bool limitedF
|
||||||
if (rpm > 2 * engineConfiguration->cranking.rpm) {
|
if (rpm > 2 * engineConfiguration->cranking.rpm) {
|
||||||
const char *outputName = event->output->name;
|
const char *outputName = event->output->name;
|
||||||
if (prevOutputName == outputName) {
|
if (prevOutputName == outputName) {
|
||||||
warning(CUSTOM_OBD_46, "looks like skipped fuel event");
|
warning(CUSTOM_OBD_SKIPPED_FUEL, "looks like skipped fuel event");
|
||||||
}
|
}
|
||||||
prevOutputName = outputName;
|
prevOutputName = outputName;
|
||||||
}
|
}
|
||||||
|
|
|
@ -283,7 +283,7 @@ static void MMCmount(void) {
|
||||||
// Performs the initialization procedure on the inserted card.
|
// Performs the initialization procedure on the inserted card.
|
||||||
lockSpi(SPI_NONE);
|
lockSpi(SPI_NONE);
|
||||||
if (mmcConnect(&MMCD1) != CH_SUCCESS) {
|
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();
|
unlockSpi();
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue