Skip to content
Snippets Groups Projects
Commit 3af2ff0b authored by Vincent Dupont's avatar Vincent Dupont
Browse files

cpu/stm32f3: remove conflicting enum from vendor header

parent 5cc7342d
No related branches found
No related tags found
No related merge requests found
...@@ -170,32 +170,6 @@ ...@@ -170,32 +170,6 @@
#error "Please select first the target STM32F3xx device used in your application (in stm32f3xx.h file)" #error "Please select first the target STM32F3xx device used in your application (in stm32f3xx.h file)"
#endif #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;
/** /**
* @} * @}
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment