From 3af2ff0bd1dc7927e2c3da8dbfc825e49c1faff7 Mon Sep 17 00:00:00 2001 From: Vincent Dupont <vincent@otakeys.com> Date: Tue, 10 Jul 2018 15:37:41 +0200 Subject: [PATCH] cpu/stm32f3: remove conflicting enum from vendor header --- cpu/stm32f3/include/vendor/stm32f3xx.h | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/cpu/stm32f3/include/vendor/stm32f3xx.h b/cpu/stm32f3/include/vendor/stm32f3xx.h index b77f97df5a..3e9ddf310d 100644 --- a/cpu/stm32f3/include/vendor/stm32f3xx.h +++ b/cpu/stm32f3/include/vendor/stm32f3xx.h @@ -170,32 +170,6 @@ #error "Please select first the target STM32F3xx device used in your application (in stm32f3xx.h file)" #endif -/** - * @} - */ - -/** @addtogroup Exported_types - * @{ - */ -typedef enum -{ - RESET = 0, - SET = !RESET -} FlagStatus, ITStatus; - -typedef enum -{ - DISABLE = 0, - ENABLE = !DISABLE -} FunctionalState; -#define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE)) - -typedef enum -{ - ERROR = 0, - SUCCESS = !ERROR -} ErrorStatus; - /** * @} */ -- GitLab