rusefi-1/firmware/controllers/engine_controller.h

21 lines
468 B
C
Raw Normal View History

2015-07-10 06:01:56 -07:00
/**
* @file engine_controller.h
* @brief Controllers package entry point header
*
* @date Feb 7, 2013
2020-01-07 21:02:40 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2015-07-10 06:01:56 -07:00
*/
2019-09-19 21:34:42 -07:00
#pragma once
2015-07-10 06:01:56 -07:00
bool validateConfig();
2016-12-27 11:04:04 -08:00
char * getPinNameByAdcChannel(const char *msg, adc_channel_e hwChannel, char *buffer);
void initPeriodicEvents();
void initEngineContoller();
void commonInitEngineController();
void initStartStopButton();
2015-07-10 06:01:56 -07:00
void initDataStructures();
2019-12-23 21:03:53 -08:00
void slowStartStopButtonCallback();