#586 undoing bootloader damage

This commit is contained in:
rusefi 2018-03-25 09:18:40 -04:00
parent ac5401fc47
commit b55dda9658
2 changed files with 5 additions and 6 deletions

View File

@ -69,12 +69,15 @@
#include "CJ125.h"
#endif /* EFI_PROD_CODE */
#if defined(EFI_BOOTLOADER_INCLUDE_CODE) || defined(__DOXYGEN__)
#include "bootloader/bootloader.h"
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
extern bool hasFirmwareErrorFlag;
extern EnginePins enginePins;
EXTERN_ENGINE;
/**
* CH_FREQUENCY is the number of system ticks in a second
*/
@ -730,5 +733,5 @@ int getRusEfiVersion(void) {
if (initBootloader() != 0)
return 123;
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
return 20180323;
return 20180325;
}

View File

@ -121,10 +121,6 @@
#include "engine_emulator.h"
#endif /* EFI_ENGINE_EMULATOR */
#if defined(EFI_BOOTLOADER_INCLUDE_CODE) || defined(__DOXYGEN__)
#include "bootloader/bootloader.h"
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
LoggingWithStorage sharedLogger("main");
bool main_loop_started = false;