mirror of https://github.com/rusefi/rusefi-1.git
21 lines
468 B
C
21 lines
468 B
C
/**
|
|
* @file engine_controller.h
|
|
* @brief Controllers package entry point header
|
|
*
|
|
* @date Feb 7, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
bool validateConfig();
|
|
char * getPinNameByAdcChannel(const char *msg, adc_channel_e hwChannel, char *buffer);
|
|
void initPeriodicEvents();
|
|
void initEngineContoller();
|
|
void commonInitEngineController();
|
|
void initStartStopButton();
|
|
|
|
void initDataStructures();
|
|
|
|
void slowStartStopButtonCallback();
|