auto-sync

This commit is contained in:
rusEfi 2016-11-20 23:01:49 -05:00
parent 1315351c8e
commit 63f3e8abde
3 changed files with 4 additions and 4 deletions

View File

@ -1712,14 +1712,14 @@ typedef enum {
CUSTOM_OBD_41 = 6041,
CUSTOM_OBD_42 = 6042,
CUSTOM_OBD_MMC_ERROR = 6043,
CUSTOM_OBD_44 = 6044,
CUSTOM_LOGGING_BUFFER_OVERFLOW = 6044,
CUSTOM_OBD_SKIPPED_SPARK = 6045,
CUSTOM_OBD_SKIPPED_FUEL = 6046,
CUSTOM_OBD_SCH_REUSE = 6047,
CUSTOM_OBD_48 = 6048,
CUSTOM_OBD_49 = 6049,
CUSTOM_OBD_50 = 6050,
CUSTOM_TOO_LONG_FUEL_INJECTION = 6050,
CUSTOM_OBD_51 = 6051,
CUSTOM_OBD_52 = 6052,
CUSTOM_OBD_53 = 6053,

View File

@ -235,7 +235,7 @@ static ALWAYS_INLINE void handleFuelInjectionEvent(int injEventIndex, InjectionE
#endif /*EFI_PRINTF_FUEL_DETAILS */
if (injectionDuration > getCrankshaftRevolutionTimeMs(rpm)) {
warning(CUSTOM_OBD_50, "Too long fuel injection");
warning(CUSTOM_TOO_LONG_FUEL_INJECTION, "Too long fuel injection");
}
// todo: pre-calculate 'numberOfInjections'

View File

@ -57,7 +57,7 @@ static ALWAYS_INLINE bool validateBuffer(Logging *logging, uint32_t extraLen) {
if (remainingSize(logging) < extraLen + 1) {
#if EFI_PROD_CODE
warning(CUSTOM_OBD_44, "output overflow %s", logging->name);
warning(CUSTOM_LOGGING_BUFFER_OVERFLOW, "output overflow %s", logging->name);
#endif
return true;
}