This commit is contained in:
rusefi 2019-01-14 11:36:46 -05:00
parent 32bd383b59
commit 10bb348d87
2 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,7 @@ EXTERN_ENGINE
; ;
static cyclic_buffer<int> errorDetection; static cyclic_buffer<int> errorDetection;
// todo! make this NOT a global variable
static bool isInitializingTrigger = false; // #286 miata NA config - sync error on startup static bool isInitializingTrigger = false; // #286 miata NA config - sync error on startup
#if ! EFI_PROD_CODE || defined(__DOXYGEN__) #if ! EFI_PROD_CODE || defined(__DOXYGEN__)

View File

@ -16,6 +16,8 @@
class EngineTestHelperBase class EngineTestHelperBase
{ {
public: public:
// we have the base method and base constructor in order to better control order if initialization
// base constructor contains things which need to be executed first
EngineTestHelperBase(); EngineTestHelperBase();
}; };