improvement: IAC solenoid frequencty changeable on the fly
This commit is contained in:
parent
fe69c7ae4e
commit
80f97b43f9
|
@ -9,6 +9,7 @@ current binaries are always available at http://rusefi.com/build_server/
|
||||||
|
|
||||||
| Release date | Revision | Details |
|
| Release date | Revision | Details |
|
||||||
| ------------ | --------- | ------- |
|
| ------------ | --------- | ------- |
|
||||||
|
| 07/09/2017 | r14473 | improvement: IAC solenoid frequencty changeable on the fly |
|
||||||
| 06/19/2017 | r14393 | bugfix: pinMode, milMode |
|
| 06/19/2017 | r14393 | bugfix: pinMode, milMode |
|
||||||
| 05/27/2017 | r14221 | improvement: ochGetCommand to support offset and count |
|
| 05/27/2017 | r14221 | improvement: ochGetCommand to support offset and count |
|
||||||
| 05/05/2017 | r13974 | bugfix #404: 36/1 FATAL error: angle range trgSync |
|
| 05/05/2017 | r13974 | bugfix #404: 36/1 FATAL error: angle range trgSync |
|
||||||
|
|
|
@ -286,6 +286,7 @@ void setIdleDT(int value) {
|
||||||
|
|
||||||
void onConfigurationChangeIdleCallback(engine_configuration_s *previousConfiguration) {
|
void onConfigurationChangeIdleCallback(engine_configuration_s *previousConfiguration) {
|
||||||
shouldResetPid = !idlePid.isSame(&previousConfiguration->idleRpmPid);
|
shouldResetPid = !idlePid.isSame(&previousConfiguration->idleRpmPid);
|
||||||
|
idleSolenoid.setFrequency(boardConfiguration->idle.solenoidFrequency);
|
||||||
}
|
}
|
||||||
|
|
||||||
void startIdleBench(void) {
|
void startIdleBench(void) {
|
||||||
|
|
|
@ -327,6 +327,7 @@ void setEngineType(int value) {
|
||||||
|
|
||||||
static void setIdleSolenoidFrequency(int value) {
|
static void setIdleSolenoidFrequency(int value) {
|
||||||
boardConfiguration->idle.solenoidFrequency = value;
|
boardConfiguration->idle.solenoidFrequency = value;
|
||||||
|
incrementGlobalConfigurationVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void setInjectionPinMode(int value) {
|
static void setInjectionPinMode(int value) {
|
||||||
|
|
|
@ -260,5 +260,5 @@ int getRusEfiVersion(void) {
|
||||||
if (initBootloader() != 0)
|
if (initBootloader() != 0)
|
||||||
return 123;
|
return 123;
|
||||||
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
||||||
return 20170706;
|
return 20170709;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue