stopping AUX pins
This commit is contained in:
parent
24d5d7c862
commit
777296cace
|
@ -40,7 +40,8 @@
|
||||||
#include "svnversion.h"
|
#include "svnversion.h"
|
||||||
#include "engine_configuration.h"
|
#include "engine_configuration.h"
|
||||||
#include "CJ125.h"
|
#include "CJ125.h"
|
||||||
#endif
|
#include "aux_pid.h"
|
||||||
|
#endif /* EFI_PROD_CODE */
|
||||||
|
|
||||||
#if EFI_SPEED_DENSITY
|
#if EFI_SPEED_DENSITY
|
||||||
#include "map_averaging.h"
|
#include "map_averaging.h"
|
||||||
|
@ -230,6 +231,7 @@ void applyNewHardwareSettings(void) {
|
||||||
stopCanPins();
|
stopCanPins();
|
||||||
stopETBPins();
|
stopETBPins();
|
||||||
stopVSSPins();
|
stopVSSPins();
|
||||||
|
stopAuxPins();
|
||||||
|
|
||||||
if (engineConfiguration->bc.is_enabled_spi_1 != activeConfiguration.bc.is_enabled_spi_1)
|
if (engineConfiguration->bc.is_enabled_spi_1 != activeConfiguration.bc.is_enabled_spi_1)
|
||||||
stopSpi(SPI_DEVICE_1);
|
stopSpi(SPI_DEVICE_1);
|
||||||
|
@ -288,6 +290,7 @@ void applyNewHardwareSettings(void) {
|
||||||
startCanPins();
|
startCanPins();
|
||||||
startETBPins();
|
startETBPins();
|
||||||
startVSSPins();
|
startVSSPins();
|
||||||
|
startAuxPins();
|
||||||
|
|
||||||
adcConfigListener(engine);
|
adcConfigListener(engine);
|
||||||
}
|
}
|
||||||
|
|
|
@ -251,5 +251,5 @@ int getRusEfiVersion(void) {
|
||||||
return 123; // this is here to make the compiler happy about the unused array
|
return 123; // this is here to make the compiler happy about the unused array
|
||||||
if (UNUSED_CCM_SIZE[0] * 0 != 0)
|
if (UNUSED_CCM_SIZE[0] * 0 != 0)
|
||||||
return 3211; // this is here to make the compiler happy about the unused array
|
return 3211; // this is here to make the compiler happy about the unused array
|
||||||
return 20170501;
|
return 20170502;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue