STM32F103xB HAL User Manual
|
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. |
macros to handle FLASH Latency
#define __HAL_FLASH_GET_LATENCY | ( | ) | (READ_BIT((FLASH->ACR), FLASH_ACR_LATENCY)) |
Get the FLASH Latency.
FLASH | Latency 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.
__LATENCY__ | FLASH Latency The value of this parameter depend on device used within the same series |
None |
Definition at line 208 of file stm32f1xx_hal_flash.h.
Referenced by HAL_RCC_ClockConfig().