diff options
author | Keith Packard <keithp@keithp.com> | 2019-03-18 17:20:14 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2019-03-18 17:22:22 -0700 |
commit | e38e1a2f735a1bb4aebf0817cdd99a05567c6340 (patch) | |
tree | ab2cbe696e8e023ae637a3601f9332ad3bcc46b5 /src/stm32f4/ao_exti.h | |
parent | 65be5d1e07ff4ae619233f3b541b9599c44490ab (diff) |
altos/stm32f4: Wrong value for CK48MSEL_PLL_Q
This meant that the USB clock wasn't actually getting started...
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/stm32f4/ao_exti.h')
-rw-r--r-- | src/stm32f4/ao_exti.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stm32f4/ao_exti.h b/src/stm32f4/ao_exti.h index 0216f352..03246605 100644 --- a/src/stm32f4/ao_exti.h +++ b/src/stm32f4/ao_exti.h @@ -30,13 +30,13 @@ #define AO_EXTI_PIN_NOCONFIGURE 64 void -ao_exti_setup(struct stm_gpio *gpio, uint8_t pin, uint8_t mode, void (*callback)()); +ao_exti_setup(struct stm_gpio *gpio, uint8_t pin, uint8_t mode, void (*callback)(void)); void ao_exti_set_mode(struct stm_gpio *gpio, uint8_t pin, uint8_t mode); void -ao_exti_set_callback(struct stm_gpio *gpio, uint8_t pin, void (*callback)()); +ao_exti_set_callback(struct stm_gpio *gpio, uint8_t pin, void (*callback)(void)); void ao_exti_enable(struct stm_gpio *gpio, uint8_t pin); |