fome-fw/firmware/controllers/actuators/alternator_controller.h

20 lines
403 B
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file alternator_controller.h
2015-07-10 06:01:56 -07:00
* @brief alternator controller
*
* @date Apr 6, 2014
* @author Dmitry Sidin
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*
*/
2020-03-23 19:31:24 -07:00
#pragma once
2015-07-10 06:01:56 -07:00
void initAlternatorCtrl();
2022-09-07 21:20:56 -07:00
class AlternatorController : public EngineModule {
public:
void onFastCallback() override;
void onConfigurationChange(engine_configuration_s const* previousConfiguration) override;
};