auto-sync
This commit is contained in:
parent
ba7404c547
commit
ed3e19a95a
|
@ -1,4 +1,4 @@
|
||||||
// this section was generated by config_definition.jar on Sun Jul 12 21:31:55 EDT 2015
|
// this section was generated by config_definition.jar on Mon Jul 13 18:45:26 EDT 2015
|
||||||
// begin
|
// begin
|
||||||
#include "rusefi_types.h"
|
#include "rusefi_types.h"
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -449,7 +449,11 @@ typedef struct {
|
||||||
/**
|
/**
|
||||||
* offset 284
|
* offset 284
|
||||||
*/
|
*/
|
||||||
float unusedADC[3];
|
pin_output_mode_e hip9011CsPinMode;
|
||||||
|
/**
|
||||||
|
* offset 288
|
||||||
|
*/
|
||||||
|
float unusedADC[2];
|
||||||
/**
|
/**
|
||||||
* offset 296
|
* offset 296
|
||||||
*/
|
*/
|
||||||
|
@ -1445,4 +1449,4 @@ typedef struct {
|
||||||
} persistent_config_s;
|
} persistent_config_s;
|
||||||
|
|
||||||
// end
|
// end
|
||||||
// this section was generated by config_definition.jar on Sun Jul 12 21:31:55 EDT 2015
|
// this section was generated by config_definition.jar on Mon Jul 13 18:45:26 EDT 2015
|
||||||
|
|
|
@ -318,7 +318,9 @@
|
||||||
#define afr_type_offset_hex 384
|
#define afr_type_offset_hex 384
|
||||||
#define etbDT_offset 904
|
#define etbDT_offset 904
|
||||||
#define etbDT_offset_hex 388
|
#define etbDT_offset_hex 388
|
||||||
#define unusedADC_offset 908
|
#define hip9011CsPinMode_offset 908
|
||||||
|
#define unusedADC_offset 912
|
||||||
|
#define unusedADC_offset_hex 390
|
||||||
#define triggerInputPins1_offset 920
|
#define triggerInputPins1_offset 920
|
||||||
#define triggerInputPins1_offset_hex 398
|
#define triggerInputPins1_offset_hex 398
|
||||||
#define triggerInputPins2_offset 924
|
#define triggerInputPins2_offset 924
|
||||||
|
|
|
@ -287,9 +287,9 @@ void turnOnSpi(spi_device_e device) {
|
||||||
initSpiModule(&SPID2, getSckPin(device),
|
initSpiModule(&SPID2, getSckPin(device),
|
||||||
getMisoPin(device),
|
getMisoPin(device),
|
||||||
getMosiPin(device),
|
getMosiPin(device),
|
||||||
0,
|
engineConfiguration->spi2SckMode,
|
||||||
0,
|
engineConfiguration->spi2MosiMode,
|
||||||
0);
|
engineConfiguration->spi2MisoMode);
|
||||||
#endif /* STM32_SPI_USE_SPI2 */
|
#endif /* STM32_SPI_USE_SPI2 */
|
||||||
}
|
}
|
||||||
if (device == SPI_DEVICE_3) {
|
if (device == SPI_DEVICE_3) {
|
||||||
|
|
|
@ -370,7 +370,8 @@ float etbIFactor;
|
||||||
float fuelLevelFullTankVoltage;;"V", 1, 0, 0,10, 2
|
float fuelLevelFullTankVoltage;;"V", 1, 0, 0,10, 2
|
||||||
ego_sensor_e afr_type;AFR, WBO, EGO - whatever you like to call it;
|
ego_sensor_e afr_type;AFR, WBO, EGO - whatever you like to call it;
|
||||||
int etbDT;
|
int etbDT;
|
||||||
float[3] unusedADC;
|
pin_output_mode_e hip9011CsPinMode;
|
||||||
|
float[2] unusedADC;
|
||||||
|
|
||||||
brain_input_pin_e[3 iterate] triggerInputPins;
|
brain_input_pin_e[3 iterate] triggerInputPins;
|
||||||
brain_pin_e mainRelayPin;
|
brain_pin_e mainRelayPin;
|
||||||
|
|
|
@ -291,5 +291,5 @@ int getRusEfiVersion(void) {
|
||||||
return 123; // this is here to make the compiler happy about the unused array
|
return 123; // this is here to make the compiler happy about the unused array
|
||||||
if (UNUSED_CCM_SIZE[0] * 0 != 0)
|
if (UNUSED_CCM_SIZE[0] * 0 != 0)
|
||||||
return 3211; // this is here to make the compiler happy about the unused array
|
return 3211; // this is here to make the compiler happy about the unused array
|
||||||
return 20150712;
|
return 20150713;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue