ETB: do not restart ETH thread on each doInitElectronicThrottle()
This commit is contained in:
parent
d23b0b063f
commit
18d5fea021
|
@ -998,7 +998,11 @@ void doInitElectronicThrottle() {
|
|||
#endif /* EFI_UNIT_TEST */
|
||||
|
||||
#if !EFI_UNIT_TEST
|
||||
etbThread.start();
|
||||
static bool started = false;
|
||||
if (started == false) {
|
||||
etbThread.start();
|
||||
started = true;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue