stm32f1: Get boot loader working
[fw/altos] / src / stm32f1 / ao_exti.h
index 1d19a48f60dcd63b99a3b964d318710197b9f72a..d072d140292bac9b58843209a142584075f63761 100644 (file)
 #ifndef _AO_EXTI_H_
 #define _AO_EXTI_H_
 
-#define AO_EXTI_MODE_RISING    1
-#define AO_EXTI_MODE_FALLING   2
-#define AO_EXTI_MODE_PULL_NONE 0
-#define AO_EXTI_MODE_PULL_UP   4
-#define AO_EXTI_MODE_PULL_DOWN 8
-#define AO_EXTI_PRIORITY_LOW   16
-#define AO_EXTI_PRIORITY_MED   0
-#define AO_EXTI_PRIORITY_HIGH  32
-#define AO_EXTI_PIN_NOCONFIGURE        64
-
 void
 ao_exti_setup(struct stm_gpio *gpio, uint8_t pin, uint8_t mode, void (*callback)(void));