Target Idle v CTS
Posted: Wed Nov 18, 2015 7:30 pm
Is there a table for target idle v CTS?
Code: Select all
typedef enum {
/**
* In auto mode we currently have some pid-like-but-not really PID logic which is trying
* to get idle RPM to desired value by dynamically adjusting idle valve position.
* TODO: convert to PID
*/
IM_AUTO = 0,
/**
* Manual idle control is extremely simple: user just specifies desired idle valve position
* which could be adjusted according to current CLT
*/
IM_MANUAL = 1,
Force_4b_idle_mode = ENUM_32_BITS,
} idle_mode_e;
Code: Select all
/**
* CLT-based adjustment for simple manual idle controller
* offset 6200
*/
float cltIdleCorrBins[CLT_CURVE_SIZE];