![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
HAL Control functions. More...
Functions | |
| void | HAL_IncTick (void) |
| This function is called to increment a global variable "uwTick" used as application time base. More... | |
| void | HAL_Delay (__IO uint32_t Delay) |
| This function provides accurate delay (in milliseconds) based on variable incremented. More... | |
| uint32_t | HAL_GetTick (void) |
| Provides a tick value in millisecond. More... | |
| void | HAL_SuspendTick (void) |
| Suspend Tick increment. More... | |
| void | HAL_ResumeTick (void) |
| Resume Tick increment. More... | |
| uint32_t | HAL_GetHalVersion (void) |
| Returns the HAL revision. More... | |
| uint32_t | HAL_GetREVID (void) |
| Returns the device revision identifier. More... | |
| uint32_t | HAL_GetDEVID (void) |
| Returns the device identifier. More... | |
| void | HAL_DBGMCU_EnableDBGSleepMode (void) |
| Enable the Debug Module during SLEEP mode. More... | |
| void | HAL_DBGMCU_DisableDBGSleepMode (void) |
| Disable the Debug Module during SLEEP mode. More... | |
| void | HAL_DBGMCU_EnableDBGStopMode (void) |
| Enable the Debug Module during STOP mode. More... | |
| void | HAL_DBGMCU_DisableDBGStopMode (void) |
| Disable the Debug Module during STOP mode. More... | |
| void | HAL_DBGMCU_EnableDBGStandbyMode (void) |
| Enable the Debug Module during STANDBY mode. More... | |
| void | HAL_DBGMCU_DisableDBGStandbyMode (void) |
| Disable the Debug Module during STANDBY mode. More... | |
| void | HAL_EnableCompensationCell (void) |
| Enables the I/O Compensation Cell. More... | |
| void | HAL_DisableCompensationCell (void) |
| Power-down the I/O Compensation Cell. More... | |
| void | HAL_EnableFMCMemorySwapping (void) |
| Enables the FMC Memory Mapping Swapping. More... | |
| void | HAL_DisableFMCMemorySwapping (void) |
| Disables the FMC Memory Mapping Swapping. More... | |
HAL Control functions.
===============================================================================
##### HAL Control functions #####
===============================================================================
[..] This section provides functions allowing to:
(+) Provide a tick value in millisecond
(+) Provide a blocking delay in millisecond
(+) Suspend the time base source interrupt
(+) Resume the time base source interrupt
(+) Get the HAL API driver version
(+) Get the device identifier
(+) Get the device revision identifier
(+) Enable/Disable Debug module during SLEEP mode
(+) Enable/Disable Debug module during STOP mode
(+) Enable/Disable Debug module during STANDBY mode | void HAL_DBGMCU_DisableDBGSleepMode | ( | void | ) |
Disable the Debug Module during SLEEP mode.
| None |
Definition at line 398 of file stm32f7xx_hal.c.
| void HAL_DBGMCU_DisableDBGStandbyMode | ( | void | ) |
Disable the Debug Module during STANDBY mode.
| None |
Definition at line 434 of file stm32f7xx_hal.c.
| void HAL_DBGMCU_DisableDBGStopMode | ( | void | ) |
Disable the Debug Module during STOP mode.
| None |
Definition at line 416 of file stm32f7xx_hal.c.
| void HAL_DBGMCU_EnableDBGSleepMode | ( | void | ) |
Enable the Debug Module during SLEEP mode.
| None |
Definition at line 389 of file stm32f7xx_hal.c.
| void HAL_DBGMCU_EnableDBGStandbyMode | ( | void | ) |
Enable the Debug Module during STANDBY mode.
| None |
Definition at line 425 of file stm32f7xx_hal.c.
| void HAL_DBGMCU_EnableDBGStopMode | ( | void | ) |
Enable the Debug Module during STOP mode.
| None |
Definition at line 407 of file stm32f7xx_hal.c.
| __weak void HAL_Delay | ( | __IO uint32_t | Delay | ) |
This function provides accurate delay (in milliseconds) based on variable incremented.
| Delay | specifies the delay time length, in milliseconds. |
| None |
Definition at line 317 of file stm32f7xx_hal.c.
| void HAL_DisableCompensationCell | ( | void | ) |
Power-down the I/O Compensation Cell.
| None |
Definition at line 456 of file stm32f7xx_hal.c.
| void HAL_DisableFMCMemorySwapping | ( | void | ) |
Disables the FMC Memory Mapping Swapping.
| None |
Definition at line 482 of file stm32f7xx_hal.c.
| void HAL_EnableCompensationCell | ( | void | ) |
Enables the I/O Compensation Cell.
| None |
Definition at line 445 of file stm32f7xx_hal.c.
| void HAL_EnableFMCMemorySwapping | ( | void | ) |
Enables the FMC Memory Mapping Swapping.
| None |
Definition at line 469 of file stm32f7xx_hal.c.
| uint32_t HAL_GetDEVID | ( | void | ) |
Returns the device identifier.
| Device | identifier |
Definition at line 380 of file stm32f7xx_hal.c.
| uint32_t HAL_GetHalVersion | ( | void | ) |
Returns the HAL revision.
| version | : 0xXYZR (8bits for each decimal, R for RC) |
Definition at line 362 of file stm32f7xx_hal.c.
| uint32_t HAL_GetREVID | ( | void | ) |
Returns the device revision identifier.
| Device | revision identifier |
Definition at line 371 of file stm32f7xx_hal.c.
| __weak uint32_t HAL_GetTick | ( | void | ) |
Provides a tick value in millisecond.
| tick | value |
Definition at line 301 of file stm32f7xx_hal.c.
| __weak void HAL_IncTick | ( | void | ) |
This function is called to increment a global variable "uwTick" used as application time base.
| None |
Definition at line 290 of file stm32f7xx_hal.c.
| __weak void HAL_ResumeTick | ( | void | ) |
Resume Tick increment.
| None |
Definition at line 352 of file stm32f7xx_hal.c.
| __weak void HAL_SuspendTick | ( | void | ) |
Suspend Tick increment.
| None |
Definition at line 336 of file stm32f7xx_hal.c.
1.8.11