auto-sync

This commit is contained in:
rusEfi 2014-12-18 08:03:19 -06:00
parent 4f9f9b9dbf
commit 91adf63f68
3 changed files with 4 additions and 2 deletions

View File

@ -433,6 +433,8 @@ void setDefaultConfiguration(engine_configuration_s *engineConfiguration, board_
setFrankenstein_01_LCD(boardConfiguration);
engineConfiguration->hip9011SpiDevice = SPI_DEVICE_2;
boardConfiguration->gps_rx_pin = GPIOB_7;
boardConfiguration->gps_tx_pin = GPIOB_6;

View File

@ -432,7 +432,7 @@ typedef struct {
trigger_config_s triggerConfig;
int space;
spi_device_e hip9011SpiDevice;
adc_channel_e vbattAdcChannel;
float globalFuelCorrection;

View File

@ -265,5 +265,5 @@ int getRusEfiVersion(void) {
return 1; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE == 0)
return 1; // this is here to make the compiler happy about the unused array
return 20141217;
return 20141218;
}