mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 22:35:23 +03:00
Renumbered timerFlag_e
Also made it clear that they are bit flags.
This commit is contained in:
parent
751a3307cb
commit
2a1b09f3ae
1 changed files with 3 additions and 3 deletions
|
@ -114,9 +114,9 @@ typedef struct timerHardware_s {
|
||||||
} timerHardware_t;
|
} timerHardware_t;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
TIMER_OUTPUT_NONE = 0x00,
|
TIMER_OUTPUT_NONE = 0,
|
||||||
TIMER_OUTPUT_INVERTED = 0x02,
|
TIMER_OUTPUT_INVERTED = (1 << 0),
|
||||||
TIMER_OUTPUT_N_CHANNEL = 0x04
|
TIMER_OUTPUT_N_CHANNEL = (1 << 1),
|
||||||
} timerFlag_e;
|
} timerFlag_e;
|
||||||
|
|
||||||
#ifdef STM32F1
|
#ifdef STM32F1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue