123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
-
- #ifndef __STM32F0xx_H
- #define __STM32F0xx_H
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- #if !defined (STM32F0)
- #define STM32F0
- #endif
- #if !defined (STM32F030x6) && !defined (STM32F030x8) && \
- !defined (STM32F031x6) && !defined (STM32F038xx) && \
- !defined (STM32F042x6) && !defined (STM32F048xx) && !defined (STM32F070x6) && \
- !defined (STM32F051x8) && !defined (STM32F058xx) && \
- !defined (STM32F071xB) && !defined (STM32F072xB) && !defined (STM32F078xx) && !defined (STM32F070xB) && \
- !defined (STM32F091xC) && !defined (STM32F098xx) && !defined (STM32F030xC)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #endif
- #if defined (STM32F048x6)
- #define STM32F048xx
- #endif
- #if !defined (USE_HAL_DRIVER)
-
- #endif
- #define __STM32F0_DEVICE_VERSION_MAIN (0x02)
- #define __STM32F0_DEVICE_VERSION_SUB1 (0x03)
- #define __STM32F0_DEVICE_VERSION_SUB2 (0x06)
- #define __STM32F0_DEVICE_VERSION_RC (0x00)
- #define __STM32F0_DEVICE_VERSION ((__STM32F0_DEVICE_VERSION_MAIN << 24)\
- |(__STM32F0_DEVICE_VERSION_SUB1 << 16)\
- |(__STM32F0_DEVICE_VERSION_SUB2 << 8 )\
- |(__STM32F0_DEVICE_VERSION_RC))
-
- #if defined(STM32F030x6)
- #include "stm32f030x6.h"
- #elif defined(STM32F030x8)
- #include "stm32f030x8.h"
- #elif defined(STM32F031x6)
- #include "stm32f031x6.h"
- #elif defined(STM32F038xx)
- #include "stm32f038xx.h"
- #elif defined(STM32F042x6)
- #include "stm32f042x6.h"
- #elif defined(STM32F048xx)
- #include "stm32f048xx.h"
- #elif defined(STM32F051x8)
- #include "stm32f051x8.h"
- #elif defined(STM32F058xx)
- #include "stm32f058xx.h"
- #elif defined(STM32F070x6)
- #include "stm32f070x6.h"
- #elif defined(STM32F070xB)
- #include "stm32f070xb.h"
- #elif defined(STM32F071xB)
- #include "stm32f071xb.h"
- #elif defined(STM32F072xB)
- #include "stm32f072xb.h"
- #elif defined(STM32F078xx)
- #include "stm32f078xx.h"
- #elif defined(STM32F091xC)
- #include "stm32f091xc.h"
- #elif defined(STM32F098xx)
- #include "stm32f098xx.h"
- #elif defined(STM32F030xC)
- #include "stm32f030xc.h"
- #else
- #error "Please select first the target STM32F0xx device used in your application (in stm32f0xx.h file)"
- #endif
-
- typedef enum
- {
- RESET = 0U,
- SET = !RESET
- } FlagStatus, ITStatus;
- typedef enum
- {
- DISABLE = 0U,
- ENABLE = !DISABLE
- } FunctionalState;
- #define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
- typedef enum
- {
- SUCCESS = 0U,
- ERROR = !SUCCESS
- } ErrorStatus;
- #define SET_BIT(REG, BIT) ((REG) |= (BIT))
- #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT))
- #define READ_BIT(REG, BIT) ((REG) & (BIT))
- #define CLEAR_REG(REG) ((REG) = (0x0))
- #define WRITE_REG(REG, VAL) ((REG) = (VAL))
- #define READ_REG(REG) ((REG))
- #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) | (SETMASK)))
- #define ATOMIC_SET_BIT(REG, BIT) \
- do { \
- uint32_t primask; \
- primask = __get_PRIMASK(); \
- __set_PRIMASK(1); \
- SET_BIT((REG), (BIT)); \
- __set_PRIMASK(primask); \
- } while(0)
- #define ATOMIC_CLEAR_BIT(REG, BIT) \
- do { \
- uint32_t primask; \
- primask = __get_PRIMASK(); \
- __set_PRIMASK(1); \
- CLEAR_BIT((REG), (BIT)); \
- __set_PRIMASK(primask); \
- } while(0)
- #define ATOMIC_MODIFY_REG(REG, CLEARMSK, SETMASK) \
- do { \
- uint32_t primask; \
- primask = __get_PRIMASK(); \
- __set_PRIMASK(1); \
- MODIFY_REG((REG), (CLEARMSK), (SETMASK)); \
- __set_PRIMASK(primask); \
- } while(0)
- #define ATOMIC_SETH_BIT(REG, BIT) ATOMIC_SET_BIT(REG, BIT) \
- #define ATOMIC_CLEARH_BIT(REG, BIT) ATOMIC_CLEAR_BIT(REG, BIT) \
- #define ATOMIC_MODIFYH_REG(REG, CLEARMSK, SETMASK) ATOMIC_MODIFY_REG(REG, CLEARMSK, SETMASK) \
- #if defined (USE_HAL_DRIVER)
- #include "stm32f0xx_hal.h"
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
-
|