Target Idle v CTS

It's all about the code!
Post Reply
Rhinoman
contributor
contributor
Posts: 256
Joined: Thu Sep 24, 2015 2:14 pm
Location: Wiltshire, UK

Target Idle v CTS

Post by Rhinoman »

Is there a table for target idle v CTS?
User avatar
AndreyB
Site Admin
Posts: 14331
Joined: Wed Aug 28, 2013 1:28 am
Location: Jersey City
Github Username: rusefillc
Slack: Andrey B

Re: Target Idle v CTS

Post by AndreyB »

CTS=CLT=coolant temperature sensor?

Idle in general is a mess, but kind of yes:

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;
and

Code: Select all

	/**
	 * CLT-based adjustment for simple manual idle controller
	 * offset 6200
	 */
	float cltIdleCorrBins[CLT_CURVE_SIZE];
Very limited telepathic abilities - please post logs & tunes where appropriate - http://rusefi.com/s/questions

Always looking for C/C++/Java/PHP developers! Please help us see https://rusefi.com/s/howtocontribute
Rhinoman
contributor
contributor
Posts: 256
Joined: Thu Sep 24, 2015 2:14 pm
Location: Wiltshire, UK

Re: Target Idle v CTS

Post by Rhinoman »

OK, I've found that. What is the syntax to set that up from Suzuki_vitara.cpp?
Post Reply