123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- #ifndef __STM32F0xx_HAL_DEF
- #define __STM32F0xx_HAL_DEF
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "stm32f0xx.h"
- #include "Legacy/stm32_hal_legacy.h"
- #include <stdio.h>
-
- typedef enum
- {
- HAL_OK = 0x00U,
- HAL_ERROR = 0x01U,
- HAL_BUSY = 0x02U,
- HAL_TIMEOUT = 0x03U
- } HAL_StatusTypeDef
- typedef enum
- {
- HAL_UNLOCKED = 0x00U,
- HAL_LOCKED = 0x01U
- } HAL_LockTypeDef
- #define HAL_MAX_DELAY 0xFFFFFFFFU
- #define HAL_IS_BIT_SET(REG, BIT) (((REG) & (BIT)) != RESET)
- #define HAL_IS_BIT_CLR(REG, BIT) (((REG) & (BIT)) == RESET)
- #define __HAL_LINKDMA(__HANDLE__, __PPP_DMA_FIELD_, __DMA_HANDLE_) \
- do{ \
- (__HANDLE__)->__PPP_DMA_FIELD_ = &(__DMA_HANDLE_)
- (__DMA_HANDLE_).Parent = (__HANDLE__)
- } while(0)
- #define UNUSED(x) ((void)(x))
-
- #define __HAL_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = 0)
- #if (USE_RTOS == 1)
- #error " USE_RTOS should be 0 in the current HAL release "
- #else
- #define __HAL_LOCK(__HANDLE__) \
- do{ \
- if((__HANDLE__)->Lock == HAL_LOCKED) \
- { \
- return HAL_BUSY
- } \
- else \
- { \
- (__HANDLE__)->Lock = HAL_LOCKED
- } \
- }while (0)
- #define __HAL_UNLOCK(__HANDLE__) \
- do{ \
- (__HANDLE__)->Lock = HAL_UNLOCKED
- }while (0)
- #endif
- #if defined ( __GNUC__ )
- #ifndef __weak
- #define __weak __attribute__((weak))
- #endif
- #ifndef __packed
- #define __packed __attribute__((__packed__))
- #endif
- #endif
- #if defined (__GNUC__)
- #ifndef __ALIGN_END
- #define __ALIGN_END __attribute__ ((aligned (4)))
- #endif
- #ifndef __ALIGN_BEGIN
- #define __ALIGN_BEGIN
- #endif
- #else
- #ifndef __ALIGN_END
- #define __ALIGN_END
- #endif
- #ifndef __ALIGN_BEGIN
- #if defined (__CC_ARM)
- #define __ALIGN_BEGIN __align(4)
- #elif defined (__ICCARM__)
- #define __ALIGN_BEGIN
- #endif
- #endif
- #endif
-
- #if defined ( __CC_ARM ) || defined ( __GNUC__ )
- #define __NOINLINE __attribute__ ( (noinline) )
- #elif defined ( __ICCARM__ )
- #define __NOINLINE _Pragma("optimize = no_inline")
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|