Functions | |
HAL_StatusTypeDef | HAL_Init (void) |
Configure the Flash prefetch, the Instruction and Data caches, the time base source, NVIC and any required global low level hardware by calling the HAL_MspInit() callback function to be optionally defined in user file bf0_hal_msp.c. More... | |
void | HAL_PreInit (void) |
Before HAL_Init is called, board specific initialization. More... | |
void | HAL_PostMspInit (void) |
It's called after HAL_PreInit in HAL_Init. More... | |
HAL_StatusTypeDef | HAL_DeInit (void) |
De-initialize common part of the HAL and stop the source of time base. More... | |
void | HAL_MspInit (void) |
Initialize the MSP. More... | |
void | HAL_MspDeInit (void) |
DeInitialize the MSP. More... | |
HAL_StatusTypeDef | HAL_InitTick (uint32_t TickPriority) |
This function configures the source of the time base: The time source is configured to have 1ms time base with a dedicated Tick interrupt priority. More... | |
HAL_StatusTypeDef HAL_DeInit | ( | void | ) |
De-initialize common part of the HAL and stop the source of time base.
HAL | status |
HAL_StatusTypeDef HAL_Init | ( | void | ) |
Configure the Flash prefetch, the Instruction and Data caches, the time base source, NVIC and any required global low level hardware by calling the HAL_MspInit() callback function to be optionally defined in user file bf0_hal_msp.c.
HAL | status |
HAL_StatusTypeDef HAL_InitTick | ( | uint32_t | TickPriority | ) |
This function configures the source of the time base: The time source is configured to have 1ms time base with a dedicated Tick interrupt priority.
TickPriority | Tick interrupt priority. |
HAL | status |
void HAL_MspDeInit | ( | void | ) |
DeInitialize the MSP.
None |
void HAL_MspInit | ( | void | ) |
Initialize the MSP.
None |
void HAL_PostMspInit | ( | void | ) |
It's called after HAL_PreInit in HAL_Init.
None |
void HAL_PreInit | ( | void | ) |
Before HAL_Init is called, board specific initialization.
None |