stopping AUX pins

This commit is contained in:
rusefi 2017-05-02 18:40:33 -04:00
parent 24d5d7c862
commit 777296cace
2 changed files with 5 additions and 2 deletions

View File

@ -40,7 +40,8 @@
#include "svnversion.h"
#include "engine_configuration.h"
#include "CJ125.h"
#endif
#include "aux_pid.h"
#endif /* EFI_PROD_CODE */
#if EFI_SPEED_DENSITY
#include "map_averaging.h"
@ -230,6 +231,7 @@ void applyNewHardwareSettings(void) {
stopCanPins();
stopETBPins();
stopVSSPins();
stopAuxPins();
if (engineConfiguration->bc.is_enabled_spi_1 != activeConfiguration.bc.is_enabled_spi_1)
stopSpi(SPI_DEVICE_1);
@ -288,6 +290,7 @@ void applyNewHardwareSettings(void) {
startCanPins();
startETBPins();
startVSSPins();
startAuxPins();
adcConfigListener(engine);
}

View File

@ -251,5 +251,5 @@ int getRusEfiVersion(void) {
return 123; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] * 0 != 0)
return 3211; // this is here to make the compiler happy about the unused array
return 20170501;
return 20170502;
}