auto-sync
This commit is contained in:
parent
70cfcf2e1a
commit
0e602b7638
|
@ -355,6 +355,8 @@ void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
|||
|
||||
engineConfiguration->externalKnockSenseAdc = EFI_ADC_NONE;
|
||||
|
||||
boardConfiguration->useSerialPort = true;
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
engineConfiguration->digitalChartSize = 300;
|
||||
#else
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated by config_definition.jar on Sat Mar 14 19:07:34 EDT 2015
|
||||
// this section was generated by config_definition.jar on Tue Mar 17 17:32:00 EDT 2015
|
||||
// begin
|
||||
#include "rusefi_types.h"
|
||||
typedef struct {
|
||||
|
@ -375,7 +375,7 @@ typedef struct {
|
|||
/**
|
||||
* offset 312
|
||||
*/
|
||||
int tunerStudioThreadPeriod;
|
||||
int anotherUnused;
|
||||
/**
|
||||
* offset 316
|
||||
*/
|
||||
|
@ -440,6 +440,9 @@ typedef struct {
|
|||
/**
|
||||
offset 372 bit 7 */
|
||||
bool_t isVerboseAlternator : 1;
|
||||
/**
|
||||
offset 372 bit 8 */
|
||||
bool_t useSerialPort : 1;
|
||||
/**
|
||||
* offset 376
|
||||
*/
|
||||
|
@ -1182,4 +1185,4 @@ typedef struct {
|
|||
} engine_configuration_s;
|
||||
|
||||
// end
|
||||
// this section was generated by config_definition.jar on Sat Mar 14 19:07:34 EDT 2015
|
||||
// this section was generated by config_definition.jar on Tue Mar 17 17:32:00 EDT 2015
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "engine_configuration.h"
|
||||
#include "engine.h"
|
||||
|
||||
#define FLASH_DATA_VERSION 7427
|
||||
#define FLASH_DATA_VERSION 7442
|
||||
|
||||
void readFromFlash(void);
|
||||
void initFlash(Logging *sharedLogger, Engine *engine);
|
||||
|
|
|
@ -333,6 +333,7 @@ bit is_enabled_spi_2
|
|||
bit isEngineControlEnabled
|
||||
bit isHip9011Enabled
|
||||
bit isVerboseAlternator
|
||||
bit useSerialPort
|
||||
|
||||
brain_input_pin_e[LOGIC_ANALYZER_CHANNEL_COUNT iterate] logicAnalyzerPins;
|
||||
uint8_t[LOGIC_ANALYZER_CHANNEL_COUNT] logicAnalyzerMode;default or inverted input
|
||||
|
|
Loading…
Reference in New Issue