24 lines
437 B
C
24 lines
437 B
C
|
/**
|
||
|
* @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-2013
|
||
|
*/
|
||
|
|
||
|
#ifndef MALFUNCTION_INDICATOR_H_
|
||
|
#define MALFUNCTION_INDICATOR_H_
|
||
|
|
||
|
#include "main.h"
|
||
|
|
||
|
#if EFI_MALFUNCTIONAL_INDICATOR
|
||
|
|
||
|
void initMalfunctionIndicator(void);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif /* MALFUNCTION_INDICATOR_H_ */
|