diff options
author | Keith Packard <keithp@keithp.com> | 2018-10-13 13:42:34 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-10-19 08:38:32 -0700 |
commit | dbc52686c6d9808275c35e0c9c987cbbd9f7859d (patch) | |
tree | 0255c33591abdc770c39e658478b6d0a9f54e4b9 /src/stm/stm32l.h | |
parent | 80affca535c5c43a5d9963dfafc74f9675c9b155 (diff) |
altos/stm: Make beeper driver support all possible tim234 configs
And update all users to be explicit about the desired config.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/stm/stm32l.h')
-rw-r--r-- | src/stm/stm32l.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/stm/stm32l.h b/src/stm/stm32l.h index 1da817e7..0109ec81 100644 --- a/src/stm/stm32l.h +++ b/src/stm/stm32l.h @@ -241,15 +241,14 @@ stm_gpio_get_all(struct stm_gpio *gpio) { * ao_enable_gpio macro will expand into a huge pile of code * as the compiler won't do correct constant folding and * dead-code elimination + */ - extern struct stm_gpio stm_gpioa; - extern struct stm_gpio stm_gpiob; - extern struct stm_gpio stm_gpioc; - extern struct stm_gpio stm_gpiod; - extern struct stm_gpio stm_gpioe; - extern struct stm_gpio stm_gpioh; - -*/ +extern struct stm_gpio stm_gpioa; +extern struct stm_gpio stm_gpiob; +extern struct stm_gpio stm_gpioc; +extern struct stm_gpio stm_gpiod; +extern struct stm_gpio stm_gpioe; +extern struct stm_gpio stm_gpioh; #define stm_gpioh (*((struct stm_gpio *) 0x40021400)) #define stm_gpioe (*((struct stm_gpio *) 0x40021000)) |