fixing stuff?
This commit is contained in:
parent
a0593844c7
commit
76d3dbe22c
|
@ -952,6 +952,13 @@ typedef enum __attribute__ ((__packed__)) {
|
||||||
GPPWM_Iat = 3,
|
GPPWM_Iat = 3,
|
||||||
} gppwm_channel_e;
|
} gppwm_channel_e;
|
||||||
|
|
||||||
|
typedef enum __attribute__ ((__packed__)) {
|
||||||
|
B100KBPS = 0, // 100kbps
|
||||||
|
B250KBPS = 1, // 250kbps
|
||||||
|
B500KBPS = 2, // 500kbps
|
||||||
|
B1MBPS = 3, // 1Mbps
|
||||||
|
} can_baudrate_e;
|
||||||
|
|
||||||
typedef enum __attribute__ ((__packed__)) {
|
typedef enum __attribute__ ((__packed__)) {
|
||||||
GPPWM_GreaterThan = 0,
|
GPPWM_GreaterThan = 0,
|
||||||
GPPWM_LessThan = 1,
|
GPPWM_LessThan = 1,
|
||||||
|
|
|
@ -268,12 +268,5 @@ typedef enum __attribute__ ((__packed__)) {
|
||||||
EFI_ADC_ERROR = 17,
|
EFI_ADC_ERROR = 17,
|
||||||
} adc_channel_e;
|
} adc_channel_e;
|
||||||
|
|
||||||
typedef enum __attribute__ ((__packed__)) {
|
|
||||||
B100KBPS = 0, // 100kbps
|
|
||||||
B250KBPS = 1, // 250kbps
|
|
||||||
B500KBPS = 2, // 500kbps
|
|
||||||
B1MBPS = 3, // 1Mbps
|
|
||||||
} can_baudrate_e;
|
|
||||||
|
|
||||||
#define INCOMPATIBLE_CONFIG_CHANGE EFI_ADC_0
|
#define INCOMPATIBLE_CONFIG_CHANGE EFI_ADC_0
|
||||||
|
|
||||||
|
|
|
@ -716,6 +716,6 @@ int getRusEfiVersion(void) {
|
||||||
if (initBootloader() != 0)
|
if (initBootloader() != 0)
|
||||||
return 123;
|
return 123;
|
||||||
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
||||||
return 20200613;
|
return 20200614;
|
||||||
}
|
}
|
||||||
#endif /* EFI_UNIT_TEST */
|
#endif /* EFI_UNIT_TEST */
|
||||||
|
|
|
@ -10,3 +10,4 @@ openocd
|
||||||
DfuSe
|
DfuSe
|
||||||
rusefi_*.*
|
rusefi_*.*
|
||||||
triggers
|
triggers
|
||||||
|
unit_test*.xml
|
Binary file not shown.
Loading…
Reference in New Issue