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
|
2020-01-13 18:57:43 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
2020-04-01 16:00:56 -07:00
|
|
|
#pragma once
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2019-04-12 19:07:03 -07:00
|
|
|
#if EFI_MALFUNCTION_INDICATOR
|
2015-07-10 06:01:56 -07:00
|
|
|
|
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 */
|
|
|
|
|