auto-sync
This commit is contained in:
parent
2874b61b1d
commit
33986dd217
|
@ -224,8 +224,14 @@ void prepareVoidConfiguration(engine_configuration_s *activeConfiguration) {
|
|||
|
||||
/**
|
||||
* @brief Global default engine configuration
|
||||
* This method sets the default global engine configuration. These values are later overridden by engine-specific defaults
|
||||
* and the settings saves in flash memory.
|
||||
* This method sets the global engine configuration defaults. These default values are then
|
||||
* overridden by engine-specific defaults and the settings are saved in flash memory.
|
||||
*
|
||||
* This method is invoked only when new configuration is needed:
|
||||
* * recently re-flashed chip
|
||||
* * flash version of configuration failed CRC check or appears to be older then FLASH_DATA_VERSION
|
||||
* * 'rewriteconfig' command
|
||||
* * 'set_engine_type X' command
|
||||
*/
|
||||
void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||
#if (! EFI_UNIT_TEST) || defined(__DOXYGEN__)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated by config_definition.jar on Tue Sep 15 20:29:10 EDT 2015
|
||||
// this section was generated by config_definition.jar on Sat Sep 26 08:19:22 EDT 2015
|
||||
// begin
|
||||
#include "rusefi_types.h"
|
||||
typedef struct {
|
||||
|
@ -1155,6 +1155,7 @@ typedef struct {
|
|||
*/
|
||||
adc_channel_e acSwitchAdc;
|
||||
/**
|
||||
* At what trigger index should some ignition-related math be executed? This is a performance trick to reduce load on synchronization trigger callback.
|
||||
* offset 1524
|
||||
*/
|
||||
int ignMathCalculateAtIndex;
|
||||
|
@ -1219,6 +1220,7 @@ typedef struct {
|
|||
*/
|
||||
float noAccelAfterHardLimitPeriodSecs;
|
||||
/**
|
||||
* At what trigger index should some MAP-related math be executed? This is a performance trick to reduce load on synchronization trigger callback.
|
||||
* offset 1648
|
||||
*/
|
||||
int mapAveragingSchedulingAtIndex;
|
||||
|
@ -1503,4 +1505,4 @@ typedef struct {
|
|||
} persistent_config_s;
|
||||
|
||||
// end
|
||||
// this section was generated by config_definition.jar on Tue Sep 15 20:29:10 EDT 2015
|
||||
// this section was generated by config_definition.jar on Sat Sep 26 08:19:22 EDT 2015
|
||||
|
|
|
@ -430,7 +430,14 @@ void mainTriggerCallback(trigger_event_e ckpSignalType, uint32_t eventIndex DECL
|
|||
|
||||
// triggerEventsQueue.executeAll(getCrankEventCounter());
|
||||
|
||||
/**
|
||||
* For fuel we schedule start of injection based on trigger angle, and then inject for
|
||||
* specified duration of time
|
||||
*/
|
||||
handleFuel(eventIndex, rpm PASS_ENGINE_PARAMETER);
|
||||
/**
|
||||
* For spark we schedule both start of coil charge and actual spark based on trigger angle
|
||||
*/
|
||||
handleSpark(eventIndex, rpm, &engine->engineConfiguration2->ignitionEvents[revolutionIndex] PASS_ENGINE_PARAMETER);
|
||||
#if (EFI_HISTOGRAMS && EFI_PROD_CODE) || defined(__DOXYGEN__)
|
||||
int diff = hal_lld_get_counter_value() - beforeCallback;
|
||||
|
|
|
@ -532,7 +532,7 @@ custom idle_mode_e 4 bits, U32, @OFFSET@, [0:0], "false", "true"
|
|||
|
||||
adc_channel_e acSwitchAdc;A/C button input handled as analog input
|
||||
|
||||
int ignMathCalculateAtIndex;
|
||||
int ignMathCalculateAtIndex;At what trigger index should some ignition-related math be executed? This is a performance trick to reduce load on synchronization trigger callback.;"index", 1, 0, 0, 7000, 0
|
||||
|
||||
int16_t acCutoffLowRpm;
|
||||
int16_t acCutoffHighRpm;
|
||||
|
@ -559,7 +559,7 @@ custom pin_input_mode_e 4 scalar, F32, @OFFSET@, "ms", 1, 0, 0, 200, 1
|
|||
|
||||
float noAccelAfterHardLimitPeriodSecs;;"sec", 1, 0, 0, 60, 0
|
||||
|
||||
int mapAveragingSchedulingAtIndex;
|
||||
int mapAveragingSchedulingAtIndex;At what trigger index should some MAP-related math be executed? This is a performance trick to reduce load on synchronization trigger callback.;"index", 1, 0, 0, 7000, 0
|
||||
|
||||
float[BARO_CORR_SIZE] baroCorrPressureBins;;"kPa", 1, 0, 0.0, 200, 2
|
||||
float[BARO_CORR_SIZE] baroCorrRpmBins;;"RPM", 1, 0, 0.0, 18000, 2
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config;
|
||||
|
||||
// this file was generated automatically by ConfigDefinition.jar Tue Sep 15 20:29:15 EDT 2015
|
||||
// this file was generated automatically by ConfigDefinition.jar Sat Sep 26 08:19:27 EDT 2015
|
||||
public class Fields {
|
||||
public static final Field ENGINETYPE = new Field("ENGINETYPE", 0, FieldType.INT);
|
||||
public static final Field HEADERMAGICVALUE = new Field("HEADERMAGICVALUE", 4, FieldType.INT);
|
||||
|
|
Loading…
Reference in New Issue