2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file injector_central.h
|
|
|
|
* @brief Utility methods related to fuel injection.
|
|
|
|
*
|
|
|
|
* todo: rename this file
|
|
|
|
*
|
|
|
|
* @date Sep 8, 2013
|
2017-01-03 03:05:22 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INJECTOR_CENTRAL_H_
|
|
|
|
#define INJECTOR_CENTRAL_H_
|
|
|
|
|
|
|
|
#include "signal_executor.h"
|
|
|
|
#include "engine.h"
|
|
|
|
|
|
|
|
void fanBench(void);
|
|
|
|
void fuelPumpBench(void);
|
2016-04-23 20:07:45 -07:00
|
|
|
void milBench(void);
|
2016-03-14 20:01:43 -07:00
|
|
|
void initInjectorCentral(Logging *sharedLogger);
|
2016-01-11 14:01:33 -08:00
|
|
|
bool isRunningBenchTest(void);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2019-03-12 17:33:13 -07:00
|
|
|
void executeTSCommand(uint16_t subsystem, uint16_t index);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
#endif /* INJECTOR_CENTRAL_H_ */
|