STM32F103xB HAL User Manual
Defines
FLASH Latency
FLASH Exported Macros

macros to handle FLASH Latency More...

Defines

#define __HAL_FLASH_SET_LATENCY(__LATENCY__)   (FLASH->ACR = (FLASH->ACR&(~FLASH_ACR_LATENCY)) | (__LATENCY__))
 Set the FLASH Latency.
#define __HAL_FLASH_GET_LATENCY()   (READ_BIT((FLASH->ACR), FLASH_ACR_LATENCY))
 Get the FLASH Latency.

Detailed Description

macros to handle FLASH Latency


Define Documentation

#define __HAL_FLASH_GET_LATENCY ( )    (READ_BIT((FLASH->ACR), FLASH_ACR_LATENCY))

Get the FLASH Latency.

Return values:
FLASHLatency The value of this parameter depend on device used within the same series

Definition at line 216 of file stm32f1xx_hal_flash.h.

Referenced by HAL_RCC_ClockConfig().

#define __HAL_FLASH_SET_LATENCY (   __LATENCY__)    (FLASH->ACR = (FLASH->ACR&(~FLASH_ACR_LATENCY)) | (__LATENCY__))

Set the FLASH Latency.

Parameters:
__LATENCY__FLASH Latency The value of this parameter depend on device used within the same series
Return values:
None

Definition at line 208 of file stm32f1xx_hal_flash.h.

Referenced by HAL_RCC_ClockConfig().