mirror of https://github.com/rusefi/rusefi-1.git
Remove value copy from controller into outputChannels #4095
This commit is contained in:
parent
741392756d
commit
84f75092ec
|
@ -307,24 +307,12 @@ uint8_t unusedWat
|
||||||
bit dfcoActive
|
bit dfcoActive
|
||||||
bit tpsAccelActive
|
bit tpsAccelActive
|
||||||
|
|
||||||
uint8_t unused_8_1
|
|
||||||
uint8_t unused_8_2
|
|
||||||
uint8_t autoscale boostControllerOutput;@@GAUGE_NAME_BOOST_OUTPUT@@;"%", 0.5, 0, 0, 100, 1
|
uint8_t autoscale boostControllerOutput;@@GAUGE_NAME_BOOST_OUTPUT@@;"%", 0.5, 0, 0, 100, 1
|
||||||
uint8_t autoscale boostControllerOpenLoopPart;@@GAUGE_NAME_BOOST_OPEN_LOOP@@;"%", 0.5, 0, 0, 100, 1
|
uint8_t autoscale boostControllerOpenLoopPart;@@GAUGE_NAME_BOOST_OPEN_LOOP@@;"%", 0.5, 0, 0, 100, 1
|
||||||
|
|
||||||
float unused_32_1
|
|
||||||
float unused_32_2
|
|
||||||
|
|
||||||
float autoscale vvtSyncGapRatio;;"", 1, 0, -10000, 10000, 3
|
|
||||||
float autoscale vvtCurrentPosition;;"", 1, 0, -10000, 10000, 3
|
|
||||||
|
|
||||||
float autoscale triggerSyncGapRatio;@@GAUGE_NAME_TRG_GAP@@;"", 1, 0, -10000, 10000, 3
|
float autoscale triggerSyncGapRatio;@@GAUGE_NAME_TRG_GAP@@;"", 1, 0, -10000, 10000, 3
|
||||||
|
|
||||||
uint8_t triggerStateIndex;;"", 1, 0, -10000, 10000, 3
|
|
||||||
uint8_t vvtCounter;;"", 1, 0, -10000, 10000, 3
|
|
||||||
uint8_t vvtSyncCounter;;"", 1, 0, -10000, 10000, 3
|
|
||||||
uint8_t vvtStateIndex;;"", 1, 0, -10000, 10000, 3
|
|
||||||
|
|
||||||
uint16_t autoscale fallbackMap;;"kPa", 0.1, 0, 0, 1000, 1
|
uint16_t autoscale fallbackMap;;"kPa", 0.1, 0, 0, 1000, 1
|
||||||
|
|
||||||
int8_t autoscale boostControllerClosedLoopPart;@@GAUGE_NAME_BOOST_CLOSED_LOOP@@;"%", 0.5, 0, -50, 50, 1
|
int8_t autoscale boostControllerClosedLoopPart;@@GAUGE_NAME_BOOST_CLOSED_LOOP@@;"%", 0.5, 0, -50, 50, 1
|
||||||
|
|
|
@ -1,4 +1,11 @@
|
||||||
struct_no_prefix trigger_state_s
|
struct_no_prefix trigger_state_s
|
||||||
float currentGap;
|
float currentGap;
|
||||||
uint32_t totalRevolutionCounter;Crank revolution counter
|
uint32_t totalRevolutionCounter;Crank revolution counter
|
||||||
|
float autoscale vvtSyncGapRatio;;"", 1, 0, -10000, 10000, 3
|
||||||
|
float autoscale vvtCurrentPosition;;"", 1, 0, -10000, 10000, 3
|
||||||
|
|
||||||
|
uint8_t triggerStateIndex
|
||||||
|
uint8_t vvtCounter
|
||||||
|
uint8_t vvtSyncCounter
|
||||||
|
uint8_t vvtStateIndex
|
||||||
end_struct
|
end_struct
|
||||||
|
|
Loading…
Reference in New Issue