improvement: IAC solenoid frequencty changeable on the fly

This commit is contained in:
rusefi 2017-07-10 22:24:03 -04:00
parent fe69c7ae4e
commit 80f97b43f9
4 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,7 @@ current binaries are always available at http://rusefi.com/build_server/
| Release date | Revision | Details |
| ------------ | --------- | ------- |
| 07/09/2017 | r14473 | improvement: IAC solenoid frequencty changeable on the fly |
| 06/19/2017 | r14393 | bugfix: pinMode, milMode |
| 05/27/2017 | r14221 | improvement: ochGetCommand to support offset and count |
| 05/05/2017 | r13974 | bugfix #404: 36/1 FATAL error: angle range trgSync |

View File

@ -286,6 +286,7 @@ void setIdleDT(int value) {
void onConfigurationChangeIdleCallback(engine_configuration_s *previousConfiguration) {
shouldResetPid = !idlePid.isSame(&previousConfiguration->idleRpmPid);
idleSolenoid.setFrequency(boardConfiguration->idle.solenoidFrequency);
}
void startIdleBench(void) {

View File

@ -327,6 +327,7 @@ void setEngineType(int value) {
static void setIdleSolenoidFrequency(int value) {
boardConfiguration->idle.solenoidFrequency = value;
incrementGlobalConfigurationVersion();
}
static void setInjectionPinMode(int value) {

View File

@ -260,5 +260,5 @@ int getRusEfiVersion(void) {
if (initBootloader() != 0)
return 123;
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
return 20170706;
return 20170709;
}