From 751a3307cb8709b988d0b96f2524a542dfb6a052 Mon Sep 17 00:00:00 2001 From: jflyper Date: Mon, 6 Nov 2017 14:52:30 +0900 Subject: [PATCH] Remove unused MOTOR_OUTPUT flags --- src/main/drivers/timer.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/drivers/timer.h b/src/main/drivers/timer.h index 9e3be13aed..2151b5c64b 100644 --- a/src/main/drivers/timer.h +++ b/src/main/drivers/timer.h @@ -115,9 +115,6 @@ typedef struct timerHardware_s { typedef enum { TIMER_OUTPUT_NONE = 0x00, - TIMER_INPUT_ENABLED = 0x01, /* TODO: remove this */ - TIMER_OUTPUT_ENABLED = 0x01, /* TODO: remove this */ - TIMER_OUTPUT_STANDARD = 0x01, TIMER_OUTPUT_INVERTED = 0x02, TIMER_OUTPUT_N_CHANNEL = 0x04 } timerFlag_e;