auto-sync
This commit is contained in:
parent
02936b26c7
commit
772b53635c
|
@ -70,15 +70,10 @@ public:
|
||||||
* Lock-free multithreading: two instances, while one is being modified another one is used read-only
|
* Lock-free multithreading: two instances, while one is being modified another one is used read-only
|
||||||
*/
|
*/
|
||||||
FuelSchedule injectionEvents0;
|
FuelSchedule injectionEvents0;
|
||||||
FuelSchedule injectionEvents1;
|
|
||||||
/**
|
/**
|
||||||
* this points at an instance we use to run the engine
|
* this points at an instance we use to run the engine
|
||||||
*/
|
*/
|
||||||
FuelSchedule *injectionEvents;
|
FuelSchedule *injectionEvents;
|
||||||
/**
|
|
||||||
* this variable is pointing at the instance which is being modified
|
|
||||||
*/
|
|
||||||
FuelSchedule *processing;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
OutputSignalPair fuelActuators[INJECTION_PIN_COUNT];
|
OutputSignalPair fuelActuators[INJECTION_PIN_COUNT];
|
||||||
|
|
|
@ -1010,7 +1010,6 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
|
||||||
|
|
||||||
engine_configuration2_s::engine_configuration2_s() {
|
engine_configuration2_s::engine_configuration2_s() {
|
||||||
injectionEvents = &injectionEvents0;
|
injectionEvents = &injectionEvents0;
|
||||||
processing = &injectionEvents1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void applyNonPersistentConfiguration(Logging * logger DECLARE_ENGINE_PARAMETER_S) {
|
void applyNonPersistentConfiguration(Logging * logger DECLARE_ENGINE_PARAMETER_S) {
|
||||||
|
|
|
@ -281,9 +281,9 @@ void firmwareError(obd_code_e code, const char *errorMsg, ...) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static char UNUSED_RAM_SIZE[1100];
|
static char UNUSED_RAM_SIZE[1200];
|
||||||
|
|
||||||
static char UNUSED_CCM_SIZE[8500] CCM_OPTIONAL;
|
static char UNUSED_CCM_SIZE[26500] CCM_OPTIONAL;
|
||||||
|
|
||||||
int getRusEfiVersion(void) {
|
int getRusEfiVersion(void) {
|
||||||
if (UNUSED_RAM_SIZE[0] != 0)
|
if (UNUSED_RAM_SIZE[0] != 0)
|
||||||
|
|
Loading…
Reference in New Issue