|
Prusa MINI Firmware overview
|

Macros | |
| #define | __HAL_RCC_RTC_ENABLE() (*(__IO uint32_t *) RCC_BDCR_RTCEN_BB = ENABLE) |
| Macros to enable or disable the RTC clock. More... | |
| #define | __HAL_RCC_RTC_DISABLE() (*(__IO uint32_t *) RCC_BDCR_RTCEN_BB = DISABLE) |
| #define | __HAL_RCC_RTC_CLKPRESCALER(__RTCCLKSource__) |
| Macros to configure the RTC clock (RTCCLK). More... | |
| #define | __HAL_RCC_RTC_CONFIG(__RTCCLKSource__) |
| #define | __HAL_RCC_GET_RTC_SOURCE() (READ_BIT(RCC->BDCR, RCC_BDCR_RTCSEL)) |
| Macro to get the RTC clock source. More... | |
| #define | __HAL_RCC_GET_RTC_HSE_PRESCALER() (READ_BIT(RCC->CFGR, RCC_CFGR_RTCPRE) | RCC_BDCR_RTCSEL) |
| Get the RTC and HSE clock divider (RTCPRE). More... | |
| #define | __HAL_RCC_BACKUPRESET_FORCE() (*(__IO uint32_t *) RCC_BDCR_BDRST_BB = ENABLE) |
| Macros to force or release the Backup domain reset. More... | |
| #define | __HAL_RCC_BACKUPRESET_RELEASE() (*(__IO uint32_t *) RCC_BDCR_BDRST_BB = DISABLE) |
| #define __HAL_RCC_RTC_ENABLE | ( | ) | (*(__IO uint32_t *) RCC_BDCR_RTCEN_BB = ENABLE) |
Macros to enable or disable the RTC clock.
| #define __HAL_RCC_RTC_DISABLE | ( | ) | (*(__IO uint32_t *) RCC_BDCR_RTCEN_BB = DISABLE) |
| #define __HAL_RCC_RTC_CLKPRESCALER | ( | __RTCCLKSource__ | ) |
Macros to configure the RTC clock (RTCCLK).
| <strong>RTCCLKSource</strong> | specifies the RTC clock source. This parameter can be one of the following values:
|
| #define __HAL_RCC_RTC_CONFIG | ( | __RTCCLKSource__ | ) |
| #define __HAL_RCC_GET_RTC_SOURCE | ( | ) | (READ_BIT(RCC->BDCR, RCC_BDCR_RTCSEL)) |
Macro to get the RTC clock source.
| The | clock source can be one of the following values:
|
| #define __HAL_RCC_GET_RTC_HSE_PRESCALER | ( | ) | (READ_BIT(RCC->CFGR, RCC_CFGR_RTCPRE) | RCC_BDCR_RTCSEL) |
Get the RTC and HSE clock divider (RTCPRE).
| Returned | value can be one of the following values:
|
| #define __HAL_RCC_BACKUPRESET_FORCE | ( | ) | (*(__IO uint32_t *) RCC_BDCR_BDRST_BB = ENABLE) |
Macros to force or release the Backup domain reset.
| #define __HAL_RCC_BACKUPRESET_RELEASE | ( | ) | (*(__IO uint32_t *) RCC_BDCR_BDRST_BB = DISABLE) |