fome-fw/firmware/controllers/injector_central.h

23 lines
508 B
C
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file injector_central.h
* @brief Utility methods related to fuel injection.
*
*
* @date Sep 8, 2013
* @author Andrey Belomutskiy, (c) 2012-2014
*/
#ifndef INJECTOR_CENTRAL_H_
#define INJECTOR_CENTRAL_H_
#include "signal_executor.h"
2014-11-05 20:03:20 -08:00
#include "engine.h"
2014-08-29 07:52:33 -07:00
2014-11-05 20:03:20 -08:00
void initInjectorCentral(Engine *engine);
2015-01-01 12:03:40 -08:00
void initIgnitionCentral(void);
2014-11-05 20:03:20 -08:00
bool_t isRunningBenchTest(void);
2014-08-29 07:52:33 -07:00
int isInjectorEnabled(int cylinderId);
void assertCylinderId(int cylinderId, const char *msg);
#endif /* INJECTOR_CENTRAL_H_ */