auto-sync

This commit is contained in:
rusEfi 2014-12-27 00:03:34 -06:00
parent 84d13c83ea
commit a6f5fe3da4
3 changed files with 5 additions and 2 deletions

View File

@ -458,6 +458,7 @@ void setDefaultConfiguration(engine_configuration_s *engineConfiguration, board_
boardConfiguration->logicAnalyzerPins[1] = GPIO_UNASSIGNED; // GPIOE_5 is a popular option (if available)
boardConfiguration->logicAnalyzerPins[2] = GPIO_UNASSIGNED;
boardConfiguration->logicAnalyzerPins[3] = GPIO_UNASSIGNED;
engineConfiguration->vehicleSpeedSensorInputPin = GPIO_UNASSIGNED;
boardConfiguration->logicAnalyzerMode[0] = false;
boardConfiguration->logicAnalyzerMode[1] = false;

View File

@ -407,7 +407,9 @@ typedef struct {
*/
float fanOffTemperature;
int unusedTwoInts[2];
brain_pin_e vehicleSpeedSensorInputPin;
int unused964;
// offset 968
can_nbc_e canNbcType;
// offset 972

View File

@ -12,7 +12,7 @@
#include "engine_configuration.h"
#include "engine.h"
#define FLASH_DATA_VERSION 5932
#define FLASH_DATA_VERSION 5964
void readFromFlash(void);
void initFlash(Engine *engine);