diff --git a/firmware/controllers/trigger/trigger_structure.cpp b/firmware/controllers/trigger/trigger_structure.cpp index c1804072aa..552dd4aecf 100644 --- a/firmware/controllers/trigger/trigger_structure.cpp +++ b/firmware/controllers/trigger/trigger_structure.cpp @@ -107,9 +107,6 @@ void TriggerShape::calculateTriggerSynchPoint(TriggerState *state DECLARE_ENGINE } } -void TriggerShape::clear() { -} - void TriggerShape::initialize(operation_mode_e operationMode, bool needSecondTriggerInput) { tdcPosition = 0; setTriggerSynchronizationGap(2); diff --git a/firmware/controllers/trigger/trigger_structure.h b/firmware/controllers/trigger/trigger_structure.h index 0e87a4bc02..89c554edac 100644 --- a/firmware/controllers/trigger/trigger_structure.h +++ b/firmware/controllers/trigger/trigger_structure.h @@ -133,10 +133,6 @@ public: void addEvent(angle_t angle, trigger_wheel_e const waveIndex, trigger_value_e const stateParam, float filterLeft, float filterRight); operation_mode_e getOperationMode(); - /** - * This method resets - */ - void clear(); void initialize(operation_mode_e operationMode, bool needSecondTriggerInput); void setTriggerSynchronizationGap(float synchRatio); void setTriggerSynchronizationGap2(float syncRatioFrom, float syncRatioTo);