Macros | Enumerations
stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h File Reference

This file contains HAL common defines, enumeration, macros and structures definitions. More...

#include "stm32h7xx.h"
#include "Legacy/stm32_hal_legacy.h"
#include <stddef.h>
#include <math.h>
Include dependency graph for stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define __ALIGN_END
 
#define __HAL_LINKDMA(__HANDLE__, __PPP_DMA_FIELD__, __DMA_HANDLE__)
 
#define __HAL_LOCK(__HANDLE__)
 
#define __HAL_RESET_HANDLE_STATE(__HANDLE__)   ((__HANDLE__)->State = 0)
 Reset the Handle's State field. More...
 
#define __HAL_UNLOCK(__HANDLE__)
 
#define HAL_IS_BIT_CLR(REG, BIT)   (((REG) & (BIT)) == 0U)
 
#define HAL_IS_BIT_SET(REG, BIT)   (((REG) & (BIT)) == (BIT))
 
#define HAL_MAX_DELAY   0xFFFFFFFFU
 
#define UNUSED(x)   ((void)(x))
 

Enumerations

enum  HAL_LockTypeDef {
  HAL_UNLOCKED = 0x00U, HAL_LOCKED = 0x01U, HAL_UNLOCKED = 0x00U, HAL_LOCKED = 0x01U,
  HAL_UNLOCKED = 0x00U, HAL_LOCKED = 0x01U, HAL_UNLOCKED = 0x00U, HAL_LOCKED = 0x01U,
  HAL_UNLOCKED = 0x00, HAL_LOCKED = 0x01, HAL_UNLOCKED = 0x00, HAL_LOCKED = 0x01
}
 HAL Lock structures definition. More...
 
enum  HAL_StatusTypeDef {
  HAL_OK = 0x00U, HAL_ERROR = 0x01U, HAL_BUSY = 0x02U, HAL_TIMEOUT = 0x03U,
  HAL_OK = 0x00U, HAL_ERROR = 0x01U, HAL_BUSY = 0x02U, HAL_TIMEOUT = 0x03U,
  HAL_OK = 0x00U, HAL_ERROR = 0x01U, HAL_BUSY = 0x02U, HAL_TIMEOUT = 0x03U,
  HAL_OK = 0x00U, HAL_ERROR = 0x01U, HAL_BUSY = 0x02U, HAL_TIMEOUT = 0x03U,
  HAL_OK = 0x00, HAL_ERROR = 0x01, HAL_BUSY = 0x02, HAL_TIMEOUT = 0x03,
  HAL_OK = 0x00, HAL_ERROR = 0x01, HAL_BUSY = 0x02, HAL_TIMEOUT = 0x03
}
 HAL Status structures definition. More...
 

Detailed Description

This file contains HAL common defines, enumeration, macros and structures definitions.

Author
MCD Application Team
Attention

© Copyright (c) 2017 STMicroelectronics. All rights reserved.

This software component is licensed by ST under BSD 3-Clause license, the "License"; You may not use this file except in compliance with the License. You may obtain a copy of the License at: opensource.org/licenses/BSD-3-Clause

Definition in file stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h.

Macro Definition Documentation

◆ __ALIGN_END

#define __ALIGN_END

◆ __HAL_LINKDMA

#define __HAL_LINKDMA (   __HANDLE__,
  __PPP_DMA_FIELD__,
  __DMA_HANDLE__ 
)
Value:
do{ \
(__HANDLE__)->__PPP_DMA_FIELD__ = &(__DMA_HANDLE__); \
(__DMA_HANDLE__).Parent = (__HANDLE__); \
} while(0)

Definition at line 64 of file stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h.

◆ __HAL_LOCK

#define __HAL_LOCK (   __HANDLE__)
Value:
do{ \
if((__HANDLE__)->Lock == HAL_LOCKED) \
{ \
return HAL_BUSY; \
} \
else \
{ \
(__HANDLE__)->Lock = HAL_LOCKED; \
} \
}while (0)

Definition at line 92 of file stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h.

◆ __HAL_RESET_HANDLE_STATE

#define __HAL_RESET_HANDLE_STATE (   __HANDLE__)    ((__HANDLE__)->State = 0)

Reset the Handle's State field.

Parameters
<strong>HANDLE</strong>specifies the Peripheral Handle.
Note
This macro can be used for the following purpose:
  • When the Handle is declared as local variable; before passing it as parameter to HAL_PPP_Init() for the first time, it is mandatory to use this macro to set to 0 the Handle's "State" field. Otherwise, "State" field may have any random value and the first time the function HAL_PPP_Init() is called, the low level hardware initialization will be missed (i.e. HAL_PPP_MspInit() will not be executed).
  • When there is a need to reconfigure the low level hardware: instead of calling HAL_PPP_DeInit() then HAL_PPP_Init(), user can make a call to this macro then HAL_PPP_Init(). In this later function, when the Handle's "State" field is set to 0, it will execute the function HAL_PPP_MspInit() which will reconfigure the low level hardware.
Return values
None

Definition at line 87 of file stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h.

◆ __HAL_UNLOCK

#define __HAL_UNLOCK (   __HANDLE__)
Value:
do{ \
(__HANDLE__)->Lock = HAL_UNLOCKED; \
}while (0)

Definition at line 104 of file stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h.

◆ HAL_IS_BIT_CLR

#define HAL_IS_BIT_CLR (   REG,
  BIT 
)    (((REG) & (BIT)) == 0U)

◆ HAL_IS_BIT_SET

#define HAL_IS_BIT_SET (   REG,
  BIT 
)    (((REG) & (BIT)) == (BIT))

◆ HAL_MAX_DELAY

#define HAL_MAX_DELAY   0xFFFFFFFFU

◆ UNUSED

#define UNUSED (   x)    ((void)(x))

Enumeration Type Documentation

◆ HAL_LockTypeDef

HAL Lock structures definition.

Enumerator
HAL_UNLOCKED 
HAL_LOCKED 
HAL_UNLOCKED 
HAL_LOCKED 
HAL_UNLOCKED 
HAL_LOCKED 
HAL_UNLOCKED 
HAL_LOCKED 
HAL_UNLOCKED 
HAL_LOCKED 
HAL_UNLOCKED 
HAL_LOCKED 

Definition at line 51 of file stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h.

◆ HAL_StatusTypeDef

HAL Status structures definition.

Enumerator
HAL_OK 
HAL_ERROR 
HAL_BUSY 
HAL_TIMEOUT 
HAL_OK 
HAL_ERROR 
HAL_BUSY 
HAL_TIMEOUT 
HAL_OK 
HAL_ERROR 
HAL_BUSY 
HAL_TIMEOUT 
HAL_OK 
HAL_ERROR 
HAL_BUSY 
HAL_TIMEOUT 
HAL_OK 
HAL_ERROR 
HAL_BUSY 
HAL_TIMEOUT 
HAL_OK 
HAL_ERROR 
HAL_BUSY 
HAL_TIMEOUT 

Definition at line 40 of file stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h.

HAL_BUSY
@ HAL_BUSY
Definition: stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h:44
HAL_LOCKED
@ HAL_LOCKED
Definition: stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h:54
HAL_UNLOCKED
@ HAL_UNLOCKED
Definition: stm32h747/stm32h747i-disco/CM7/Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h:53


picovoice_driver
Author(s):
autogenerated on Fri Apr 1 2022 02:15:03