![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
This file contains HAL common defines, enumeration, macros and structures definitions. More...
Go to the source code of this file.
Macros | |
#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__) |
#define | UNUSED(x) ((void)(x)) |
#define | __HAL_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = 0U) |
Reset the Handle's State field. More... | |
#define | __HAL_LOCK(__HANDLE__) |
#define | __HAL_UNLOCK(__HANDLE__) |
#define | __ALIGN_END |
Enumerations | |
enum | HAL_StatusTypeDef { HAL_OK = 0x00U, HAL_ERROR = 0x01U, HAL_BUSY = 0x02U, HAL_TIMEOUT = 0x03U } |
HAL Status structures definition. More... | |
enum | HAL_LockTypeDef { HAL_UNLOCKED = 0x00, HAL_LOCKED = 0x01 } |
HAL Lock structures definition. More... | |
This file contains HAL common defines, enumeration, macros and structures definitions.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file stm32f7xx_hal_def.h.
#define __ALIGN_END |
Definition at line 146 of file stm32f7xx_hal_def.h.
#define __HAL_LINKDMA | ( | __HANDLE__, | |
__PPP_DMA_FIELD__, | |||
__DMA_HANDLE__ | |||
) |
Definition at line 79 of file stm32f7xx_hal_def.h.
#define __HAL_LOCK | ( | __HANDLE__ | ) |
Definition at line 108 of file stm32f7xx_hal_def.h.
#define __HAL_RESET_HANDLE_STATE | ( | __HANDLE__ | ) | ((__HANDLE__)->State = 0U) |
Reset the Handle's State field.
<strong>HANDLE</strong> | specifies the Peripheral Handle. |
None |
Definition at line 102 of file stm32f7xx_hal_def.h.
#define __HAL_UNLOCK | ( | __HANDLE__ | ) |
Definition at line 120 of file stm32f7xx_hal_def.h.
#define HAL_IS_BIT_CLR | ( | REG, | |
BIT | |||
) | (((REG) & (BIT)) == RESET) |
Definition at line 77 of file stm32f7xx_hal_def.h.
#define HAL_IS_BIT_SET | ( | REG, | |
BIT | |||
) | (((REG) & (BIT)) != RESET) |
Definition at line 76 of file stm32f7xx_hal_def.h.
#define HAL_MAX_DELAY 0xFFFFFFFFU |
Definition at line 74 of file stm32f7xx_hal_def.h.
#define UNUSED | ( | x | ) | ((void)(x)) |
Definition at line 85 of file stm32f7xx_hal_def.h.
enum HAL_LockTypeDef |
HAL Lock structures definition.
Enumerator | |
---|---|
HAL_UNLOCKED | |
HAL_LOCKED |
Definition at line 67 of file stm32f7xx_hal_def.h.
enum HAL_StatusTypeDef |
HAL Status structures definition.
Enumerator | |
---|---|
HAL_OK | |
HAL_ERROR | |
HAL_BUSY | |
HAL_TIMEOUT |
Definition at line 56 of file stm32f7xx_hal_def.h.