mirror of https://github.com/rusefi/rusefi-1.git
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Sun Oct 17 03:59:16 UTC 2021
|
|
// by class com.rusefi.output.CHeaderConsumer
|
|
// begin
|
|
#pragma once
|
|
#include "rusefi_types.h"
|
|
// start of idle_state_s
|
|
struct idle_state_s {
|
|
/**
|
|
* offset 0
|
|
*/
|
|
idle_state_e idleState = (idle_state_e)0;
|
|
/**
|
|
* that's current position with CLT and IAT corrections
|
|
* offset 4
|
|
*/
|
|
percent_t currentIdlePosition = (percent_t)0;
|
|
/**
|
|
* current position without adjustments (iacByTpsTaper, afterCrankingIACtaperDuration)
|
|
* offset 8
|
|
*/
|
|
percent_t baseIdlePosition = (percent_t)0;
|
|
/**
|
|
* true in IDLE throttle pedal state, false if driver is touching the pedal
|
|
* todo: better name for this field?
|
|
* offset 12
|
|
*/
|
|
int throttlePedalUpState = (int)0;
|
|
/**
|
|
* ETB position adjustment related to idle RPM control
|
|
* offset 16
|
|
*/
|
|
percent_t etbIdleAddition = (percent_t)0;
|
|
/** total size 20*/
|
|
};
|
|
|
|
// end
|
|
// this section was generated automatically by rusEFI tool ConfigDefinition.jar based on (unknown script) controllers/actuators/idle_state.txt Sun Oct 17 03:59:16 UTC 2021
|