auto-sync

This commit is contained in:
rusEfi 2015-01-22 08:04:39 -06:00
parent 3dba7f2934
commit 749cc5aeeb
3 changed files with 10 additions and 3 deletions

View File

@ -121,7 +121,7 @@ typedef struct {
#define HW_MAX_ADC_INDEX 16
typedef struct {
// WARNING: by default, our small enums are ONE BYTE. this one is made 4-byte with the 'ENUM_SIZE_HACK' hack
// WARNING: by default, our small enums are ONE BYTE. this one is made 4-byte with the 'ENUM_32_BITS' hack
brain_pin_e idleValvePin;
pin_output_mode_e idleValvePinMode;
@ -351,7 +351,7 @@ typedef struct {
/**
* offset 334
*/
analog_chart_e analogChartMode;
int16_t analogChartMode;
/**
* todo: finish implementation. These values are used for TPS disconnect detection
* offset 336

View File

@ -131,7 +131,14 @@ int warning(obd_code_e code, const char *fmt, ...) {
}
void firmwareError(const char *fmt, ...) {
printf("firmwareError [%s]", fmt);
printf("firmwareError [%s]\r\n", fmt);
va_list ap;
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
exit(-1);
}