rusefi-1/firmware/controllers/electronic_throttle.h

23 lines
580 B
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file electronic_throttle.h
*
* @date Dec 7, 2013
2017-01-03 03:05:22 -08:00
* @author Andrey Belomutskiy, (c) 2012-2017
2015-07-10 06:01:56 -07:00
*/
#ifndef ELECTRONIC_THROTTLE_H_
#define ELECTRONIC_THROTTLE_H_
2017-05-27 20:01:41 -07:00
#include "engine.h"
2015-07-10 06:01:56 -07:00
void initElectronicThrottle(void);
void setDefaultEtbParameters(void);
2017-01-06 14:01:28 -08:00
void setEtbPFactor(float value);
void setEtbIFactor(float value);
2018-09-24 20:57:03 -07:00
void setEtbDFactor(float value);
2017-05-30 18:56:56 -07:00
bool isETBRestartNeeded(void);
2017-03-19 18:44:52 -07:00
void stopETBPins(void);
void startETBPins(void);
2017-05-27 20:01:41 -07:00
void onConfigurationChangeElectronicThrottleCallback(engine_configuration_s *previousConfiguration);
2015-07-10 06:01:56 -07:00
#endif /* ELECTRONIC_THROTTLE_H_ */