From 6f827f5a4ff7350f831dcbda94add5883b74d010 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Mon, 28 Nov 2016 16:01:48 -0500 Subject: [PATCH] auto-sync --- firmware/controllers/algo/event_registry.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/firmware/controllers/algo/event_registry.h b/firmware/controllers/algo/event_registry.h index 500e2ce433..25b8b01549 100644 --- a/firmware/controllers/algo/event_registry.h +++ b/firmware/controllers/algo/event_registry.h @@ -46,6 +46,8 @@ public: #define MAX_OUTPUTS_FOR_IGNITION 2 +class Engine; + class IgnitionEvent { public: IgnitionEvent(); @@ -62,6 +64,9 @@ public: int sparkId; int cylinderIndex; char *name; +#if EFI_UNIT_TEST + Engine *engine; +#endif IgnitionOutputPin *getOutputForLoggins(); };