/hal_stm32-2.7.6/stm32cube/stm32f2xx/drivers/include/ |
D | stm32f2xx_hal_rtc_ex.h | 723 #define IS_RTC_BKP(BKP) (((BKP) == RTC_BKP_DR0) || \ argument 724 ((BKP) == RTC_BKP_DR1) || \ 725 ((BKP) == RTC_BKP_DR2) || \ 726 ((BKP) == RTC_BKP_DR3) || \ 727 ((BKP) == RTC_BKP_DR4) || \ 728 ((BKP) == RTC_BKP_DR5) || \ 729 ((BKP) == RTC_BKP_DR6) || \ 730 ((BKP) == RTC_BKP_DR7) || \ 731 ((BKP) == RTC_BKP_DR8) || \ 732 ((BKP) == RTC_BKP_DR9) || \ [all …]
|
/hal_stm32-2.7.6/stm32cube/stm32f4xx/drivers/include/ |
D | stm32f4xx_hal_rtc_ex.h | 898 #define IS_RTC_BKP(BKP) (((BKP) == RTC_BKP_DR0) || \ argument 899 ((BKP) == RTC_BKP_DR1) || \ 900 ((BKP) == RTC_BKP_DR2) || \ 901 ((BKP) == RTC_BKP_DR3) || \ 902 ((BKP) == RTC_BKP_DR4) || \ 903 ((BKP) == RTC_BKP_DR5) || \ 904 ((BKP) == RTC_BKP_DR6) || \ 905 ((BKP) == RTC_BKP_DR7) || \ 906 ((BKP) == RTC_BKP_DR8) || \ 907 ((BKP) == RTC_BKP_DR9) || \ [all …]
|
/hal_stm32-2.7.6/stm32cube/stm32f1xx/drivers/include/ |
D | stm32f1xx_hal_rtc_ex.h | 61 #define IS_RTC_BKP(BKP) (((BKP) <= (uint32_t)RTC_BKP_DR10) || (((BKP) >= (uint32_… argument 63 #define IS_RTC_BKP(BKP) ((BKP) <= (uint32_t)RTC_BKP_NUMBER) 192 #define __HAL_RTC_TAMPER_ENABLE_IT(__HANDLE__, __INTERRUPT__) SET_BIT(BKP->CSR, (__INTERRUPT__)) 202 #define __HAL_RTC_TAMPER_DISABLE_IT(__HANDLE__, __INTERRUPT__) CLEAR_BIT(BKP->CSR, (__INTERRUPT__)) 212 #define __HAL_RTC_TAMPER_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((BKP->CSR) & ((__INTERRUPT_… 222 #define __HAL_RTC_TAMPER_GET_FLAG(__HANDLE__, __FLAG__) ((((BKP->CSR) & (__FLAG__)) != RESET)… 232 #define __HAL_RTC_TAMPER_GET_IT(__HANDLE__, __INTERRUPT__) ((((BKP->CSR) & (BKP_CSR_TEF)) != … 242 #define __HAL_RTC_TAMPER_CLEAR_FLAG(__HANDLE__, __FLAG__) SET_BIT(BKP->CSR, BKP_CSR_CTE | BKP_C…
|
D | stm32f1xx_ll_rtc.h | 466 CLEAR_BIT(BKP->CR, BKP_CR_TPE); in LL_RTC_TAMPER_Disable()
|
/hal_stm32-2.7.6/stm32cube/stm32f1xx/drivers/src/ |
D | stm32f1xx_hal_rtc_ex.c | 98 if (HAL_IS_BIT_SET(BKP->RTCCR, (BKP_RTCCR_CCO | BKP_RTCCR_ASOE))) in HAL_RTCEx_SetTamper() 108 MODIFY_REG(BKP->CR, (BKP_CR_TPE | BKP_CR_TPAL), (sTamper->Tamper | (sTamper->Trigger))); in HAL_RTCEx_SetTamper() 144 if (HAL_IS_BIT_SET(BKP->RTCCR, (BKP_RTCCR_CCO | BKP_RTCCR_ASOE))) in HAL_RTCEx_SetTamper_IT() 154 MODIFY_REG(BKP->CR, (BKP_CR_TPE | BKP_CR_TPAL), (sTamper->Tamper | (sTamper->Trigger))); in HAL_RTCEx_SetTamper_IT() 193 CLEAR_BIT(BKP->CR, BKP_CR_TPE); in HAL_RTCEx_DeactivateTamper() 201 SET_BIT(BKP->CSR, BKP_CSR_CTE); in HAL_RTCEx_DeactivateTamper() 549 MODIFY_REG(BKP->RTCCR, BKP_RTCCR_CAL, SmouthCalibMinusPulsesValue); in HAL_RTCEx_SetSmoothCalib()
|
D | stm32f1xx_ll_rtc.c | 117 LL_RTC_WriteReg(BKP, RTCCR, 0x00000000U); in LL_RTC_DeInit() 118 LL_RTC_WriteReg(BKP, CR, 0x00000000U); in LL_RTC_DeInit() 119 LL_RTC_WriteReg(BKP, CSR, 0x00000000U); in LL_RTC_DeInit() 179 LL_RTC_TAMPER_Disable(BKP); in LL_RTC_Init() 182 LL_RTC_SetOutputSource(BKP, RTC_InitStruct->OutPutSource); in LL_RTC_Init()
|
D | stm32f1xx_hal_rtc.c | 349 CLEAR_BIT(BKP->CR, BKP_CR_TPE); in HAL_RTC_Init() 353 MODIFY_REG(BKP->RTCCR, (BKP_RTCCR_CCO | BKP_RTCCR_ASOE | BKP_RTCCR_ASOS), hrtc->Init.OutPut); in HAL_RTC_Init()
|
/hal_stm32-2.7.6/stm32cube/stm32f3xx/drivers/include/ |
D | stm32f3xx_hal_rtc_ex.h | 926 #define IS_RTC_BKP(BKP) ((BKP) < (uint32_t) RTC_BKP_NUMBER) argument
|
/hal_stm32-2.7.6/stm32cube/stm32f0xx/drivers/include/ |
D | stm32f0xx_hal_rtc_ex.h | 963 #define IS_RTC_BKP(BKP) ((BKP) < (uint32_t) RTC_BKP_NUMBER) argument
|
/hal_stm32-2.7.6/stm32cube/stm32wbxx/drivers/include/ |
D | stm32wbxx_hal_rtc_ex.h | 1247 #define IS_RTC_BKP(BKP) ((BKP) < (uint32_t) RTC_BKP_NUMBER) argument
|
/hal_stm32-2.7.6/stm32cube/stm32l0xx/drivers/include/ |
D | stm32l0xx_hal_rtc_ex.h | 1236 #define IS_RTC_BKP(BKP) ((BKP) < (uint32_t) RTC_BKP_NUMBER) argument
|
/hal_stm32-2.7.6/stm32cube/stm32l1xx/drivers/include/ |
D | stm32l1xx_hal_rtc_ex.h | 224 #define IS_RTC_BKP(BKP) ((BKP) < (uint32_t) RTC_BKP_NUMBER) argument
|
/hal_stm32-2.7.6/stm32cube/stm32f1xx/soc/ |
D | stm32f101x6.h | 534 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f101xb.h | 548 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f100xb.h | 601 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f102x6.h | 574 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f100xe.h | 700 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f101xe.h | 703 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f101xg.h | 725 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f102xb.h | 587 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f103x6.h | 647 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f103xb.h | 661 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f103xe.h | 853 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f103xg.h | 869 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|
D | stm32f105xc.h | 846 #define BKP ((BKP_TypeDef *)BKP_BASE) macro
|