rusefi-1/firmware/controllers/engine_controller.h

21 lines
482 B
C
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file engine_controller.h
* @brief Controllers package entry point header
*
* @date Feb 7, 2013
2015-01-12 15:04:10 -08:00
* @author Andrey Belomutskiy, (c) 2012-2015
2014-08-29 07:52:33 -07:00
*/
#ifndef ENGINE_STATUS_H_
#define ENGINE_STATUS_H_
#include "global.h"
#include "signal_executor.h"
#include "engine_configuration.h"
2014-10-16 01:02:58 -07:00
#include "engine.h"
2014-08-29 07:52:33 -07:00
char * getPinNameByAdcChannel(adc_channel_e hwChannel, char *buffer);
2015-01-14 15:04:00 -08:00
void initEngineContoller(Logging *sharedLogger, Engine *engine);
2014-08-29 07:52:33 -07:00
#endif /* ENGINE_STATUS_H_ */