2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file alternatorController.h
|
|
|
|
* @brief alternator controller
|
|
|
|
*
|
|
|
|
* @date Apr 6, 2014
|
|
|
|
* @author Dmitry Sidin
|
2015-12-31 13:02:30 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2016
|
2015-07-10 06:01:56 -07:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef ALTERNATORCONTROLLER_H_
|
|
|
|
#define ALTERNATORCONTROLLER_H_
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
void initAlternatorCtrl(Logging *sharedLogger);
|
|
|
|
void setAltPFactor(float p);
|
|
|
|
void showAltInfo(void);
|
|
|
|
void setDefaultAlternatorParameters(void);
|
|
|
|
|
|
|
|
#endif /* ALTERNATORCONTROLLER_H_ */
|