fome-fw/firmware/controllers/malfunction_indicator.h

25 lines
533 B
C
Raw Normal View History

2015-07-10 06:01:56 -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
2017-01-03 03:05:22 -08:00
* @author Andrey Belomutskiy, (c) 2012-2017
2015-07-10 06:01:56 -07:00
*/
#ifndef MALFUNCTION_INDICATOR_H_
#define MALFUNCTION_INDICATOR_H_
2018-09-16 19:26:57 -07:00
#include "global.h"
2015-07-10 06:01:56 -07:00
#include "engine.h"
#if EFI_MALFUNCTION_INDICATOR || defined(__DOXYGEN__)
2016-12-27 21:02:03 -08:00
bool isMilEnabled();
2015-07-10 06:01:56 -07:00
void initMalfunctionIndicator(void);
#endif /* EFI_MALFUNCTION_INDICATOR */
#endif /* MALFUNCTION_INDICATOR_H_ */