mirror of https://github.com/rusefi/rusefi-1.git
22 lines
482 B
C
22 lines
482 B
C
/**
|
|
* @file alternator_controller.h
|
|
* @brief alternator controller
|
|
*
|
|
* @date Apr 6, 2014
|
|
* @author Dmitry Sidin
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
void initAlternatorCtrl();
|
|
void startAlternatorPin(void);
|
|
void stopAlternatorPin(void);
|
|
void setAltPFactor(float p);
|
|
void setAltIFactor(float p);
|
|
void setAltDFactor(float p);
|
|
void showAltInfo(void);
|
|
|
|
void onConfigurationChangeAlternatorCallback(engine_configuration_s *previousConfiguration);
|