2014-08-29 07:52:33 -07:00
|
|
|
/**
|
|
|
|
* @file malfunction_indicator.h
|
|
|
|
* @brief We can blink out OBD-II error codes using Malfunction Indicator Light (MIL)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @date Dec 20, 2013
|
|
|
|
* @author Konstantin Nikonenko
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MALFUNCTION_INDICATOR_H_
|
|
|
|
#define MALFUNCTION_INDICATOR_H_
|
|
|
|
|
|
|
|
#include "main.h"
|
2014-12-10 09:03:39 -08:00
|
|
|
#include "engine.h"
|
2014-08-29 07:52:33 -07:00
|
|
|
|
|
|
|
#if EFI_MALFUNCTIONAL_INDICATOR
|
|
|
|
|
2014-12-10 09:03:39 -08:00
|
|
|
void initMalfunctionIndicator(Engine *engine);
|
2014-08-29 07:52:33 -07:00
|
|
|
|
2014-12-10 09:03:39 -08:00
|
|
|
#endif /* EFI_MALFUNCTIONAL_INDICATOR */
|
2014-08-29 07:52:33 -07:00
|
|
|
|
|
|
|
#endif /* MALFUNCTION_INDICATOR_H_ */
|