diff --git a/firmware/controllers/algo/event_registry.cpp b/firmware/controllers/algo/event_registry.cpp index c9887a78b2..a1ca5d3a40 100644 --- a/firmware/controllers/algo/event_registry.cpp +++ b/firmware/controllers/algo/event_registry.cpp @@ -38,12 +38,3 @@ IgnitionOutputPin * IgnitionEvent::getOutputForLoggins() { return outputs[0]; } - -//void registerActuatorEventWhat(InjectionEventList *list, int eventIndex, OutputSignal *actuator, float angleOffset) { -// ActuatorEvent *e = list->getNextActuatorEvent(); -// if (e == NULL) -// return; // error already reported -// e->position.eventIndex = eventIndex; -// e->actuator = actuator; -// e->position.angleOffset = angleOffset; -//} diff --git a/firmware/controllers/scheduling/scheduler.h b/firmware/controllers/scheduling/scheduler.h index 44e5f7adf9..1aa0b275fc 100644 --- a/firmware/controllers/scheduling/scheduler.h +++ b/firmware/controllers/scheduling/scheduler.h @@ -26,7 +26,7 @@ public: bool isScheduled = false; /** - * Scheduler implementation has a linked list of these scheduling records. + * Scheduler implementation uses a sorted linked list of these scheduling records. */ scheduling_s *next = nullptr;