From c4c4821250c32c82c17c12fb70d875ade0b33bcc Mon Sep 17 00:00:00 2001 From: Marcelo Bezerra <23555060+mmosca@users.noreply.github.com> Date: Wed, 27 Sep 2023 14:53:39 +0200 Subject: [PATCH] Remove compatibility define, since all targets have been updated --- src/main/drivers/timer.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/main/drivers/timer.h b/src/main/drivers/timer.h index 12865fdc5d..a207aff0c5 100644 --- a/src/main/drivers/timer.h +++ b/src/main/drivers/timer.h @@ -119,13 +119,6 @@ typedef enum { TIM_USE_BEEPER = (1 << 25), } timerUsageFlag_e; - -// Compability -#define TIM_USE_MC_MOTOR TIM_USE_MOTOR -#define TIM_USE_MC_SERVO TIM_USE_SERVO -#define TIM_USE_FW_MOTOR TIM_USE_MOTOR -#define TIM_USE_FW_SERVO TIM_USE_SERVO - #define TIM_USE_OUTPUT_AUTO (TIM_USE_MOTOR | TIM_USE_SERVO) #define TIM_IS_MOTOR(flags) ((flags) & TIM_USE_MOTOR)