GDI red FATAL led on cranking fix #3766
This commit is contained in:
parent
8a41510171
commit
240c6fe8b6
|
@ -302,9 +302,6 @@ void Engine::updateSlowSensors() {
|
|||
vBattForTle8888 = Sensor::get(SensorType::BatteryVoltage).value_or(VBAT_FALLBACK_VALUE);
|
||||
#endif /* BOARD_TLE8888_COUNT */
|
||||
|
||||
#if EFI_MC33816
|
||||
initMc33816IfNeeded();
|
||||
#endif // EFI_MC33816
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -72,6 +72,7 @@ static void showStats() {
|
|||
efiPrintf("MC driver status 0x%x", mcDriverStatus);
|
||||
}
|
||||
|
||||
static void initMc33816IfNeeded();
|
||||
static void mcRestart();
|
||||
|
||||
|
||||
|
@ -420,8 +421,6 @@ static void download_register(int r_target) {
|
|||
spiUnselect(driver);
|
||||
}
|
||||
|
||||
static bool haveMc33816 = false;
|
||||
|
||||
void initMc33816() {
|
||||
//
|
||||
// see setTest33816EngineConfiguration for default configuration
|
||||
|
@ -461,8 +460,7 @@ void initMc33816() {
|
|||
addConsoleAction("mc33_restart", mcRestart);
|
||||
//addConsoleActionI("mc33_send", sendWord);
|
||||
|
||||
haveMc33816 = true;
|
||||
mcRestart();
|
||||
initMc33816IfNeeded();
|
||||
}
|
||||
|
||||
static void mcShutdown() {
|
||||
|
@ -571,14 +569,13 @@ static void mcRestart() {
|
|||
}
|
||||
}
|
||||
|
||||
void initMc33816IfNeeded() {
|
||||
if (!haveMc33816) {
|
||||
return;
|
||||
}
|
||||
static void initMc33816IfNeeded() {
|
||||
if (Sensor::get(SensorType::BatteryVoltage).value_or(VBAT_FALLBACK_VALUE) < LOW_VBATT) {
|
||||
isInitializaed = false;
|
||||
} else {
|
||||
if (!isInitializaed) {
|
||||
// WARNING: 'mcRestart' current implementation works in non-irq user content only
|
||||
// note all the locking SPI API usage
|
||||
mcRestart();
|
||||
isInitializaed = true;
|
||||
}
|
||||
|
|
|
@ -25,4 +25,3 @@ enum {
|
|||
};
|
||||
|
||||
void initMc33816();
|
||||
void initMc33816IfNeeded();
|
||||
|
|
Loading…
Reference in New Issue