AUX pid stop pin
This commit is contained in:
parent
302ef2b345
commit
3a0dc9c784
|
@ -16,6 +16,7 @@
|
||||||
#include "tunerstudio_configuration.h"
|
#include "tunerstudio_configuration.h"
|
||||||
#include "fsio_impl.h"
|
#include "fsio_impl.h"
|
||||||
#include "engine_math.h"
|
#include "engine_math.h"
|
||||||
|
#include "pin_repository.h"
|
||||||
|
|
||||||
EXTERN_ENGINE
|
EXTERN_ENGINE
|
||||||
;
|
;
|
||||||
|
@ -119,15 +120,25 @@ static void turnAuxPidOn(int index) {
|
||||||
engineConfiguration->auxPidFrequency[index], 0.1, applyPinState);
|
engineConfiguration->auxPidFrequency[index], 0.1, applyPinState);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void startAuxPins(void) {
|
||||||
|
for (int i = 0;i <AUX_PID_COUNT;i++) {
|
||||||
|
turnAuxPidOn(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void stopAuxPins(void) {
|
||||||
|
for (int i = 0;i < AUX_PID_COUNT;i++) {
|
||||||
|
unmarkPin(activeConfiguration.auxPidPins[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void initAuxPid(Logging *sharedLogger) {
|
void initAuxPid(Logging *sharedLogger) {
|
||||||
chThdCreateStatic(auxPidThreadStack, sizeof(auxPidThreadStack), LOWPRIO,
|
chThdCreateStatic(auxPidThreadStack, sizeof(auxPidThreadStack), LOWPRIO,
|
||||||
(tfunc_t) auxPidThread, NULL);
|
(tfunc_t) auxPidThread, NULL);
|
||||||
|
|
||||||
logger = sharedLogger;
|
logger = sharedLogger;
|
||||||
|
|
||||||
for (int i = 0;i< AUX_PID_COUNT;i++) {
|
startAuxPins();
|
||||||
turnAuxPidOn(i);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -11,5 +11,7 @@
|
||||||
#include "engine.h"
|
#include "engine.h"
|
||||||
|
|
||||||
void initAuxPid(Logging *sharedLogger);
|
void initAuxPid(Logging *sharedLogger);
|
||||||
|
void startAuxPins(void);
|
||||||
|
void stopAuxPins(void);
|
||||||
|
|
||||||
#endif /* CONTROLLERS_ALGO_AUX_PID_H_ */
|
#endif /* CONTROLLERS_ALGO_AUX_PID_H_ */
|
||||||
|
|
Loading…
Reference in New Issue