Macros
Private macros to check input parameters
Collaboration diagram for Private macros to check input parameters:

Macros

#define IS_RTC_BKP(__BKP__)   ((__BKP__) < (uint32_t) RTC_BKP_NUMBER)
 
#define IS_RTC_BKP(BKP)
 
#define IS_RTC_CALIB_OUTPUT(__OUTPUT__)
 
#define IS_RTC_CALIB_OUTPUT(OUTPUT)
 
#define IS_RTC_CALIB_SIGN(SIGN)
 
#define IS_RTC_CALIB_VALUE(VALUE)   ((VALUE) < 0x20U)
 
#define IS_RTC_OUTPUT(__OUTPUT__)
 
#define IS_RTC_SHIFT_ADD1S(__SEL__)
 
#define IS_RTC_SHIFT_ADD1S(SEL)
 
#define IS_RTC_SHIFT_SUBFS(__FS__)   ((__FS__) <= 0x00007FFF)
 
#define IS_RTC_SHIFT_SUBFS(FS)   ((FS) <= 0x00007FFFU)
 
#define IS_RTC_SMOOTH_CALIB_MINUS(__VALUE__)   ((__VALUE__) <= 0x000001FF)
 
#define IS_RTC_SMOOTH_CALIB_MINUS(VALUE)   ((VALUE) <= 0x000001FFU)
 
#define IS_RTC_SMOOTH_CALIB_PERIOD(__PERIOD__)
 
#define IS_RTC_SMOOTH_CALIB_PERIOD(PERIOD)
 
#define IS_RTC_SMOOTH_CALIB_PLUS(__PLUS__)
 
#define IS_RTC_SMOOTH_CALIB_PLUS(PLUS)
 
#define IS_RTC_TAMPER(__TAMPER__)   ((((__TAMPER__) & ((uint32_t)(0xFFFFFFFFU ^ RTC_TAMPCR_TAMPXE))) == 0x00U) && ((__TAMPER__) != (uint32_t)RESET))
 
#define IS_RTC_TAMPER(TAMPER)   ((((TAMPER) & ((uint32_t)!(RTC_TAFCR_TAMP1E | RTC_TAFCR_TAMP2E))) == 0x00U) && ((TAMPER) != (uint32_t)RESET))
 
#define IS_RTC_TAMPER_ERASE_MODE(__MODE__)
 
#define IS_RTC_TAMPER_FILTER(__FILTER__)
 
#define IS_RTC_TAMPER_FILTER(FILTER)
 
#define IS_RTC_TAMPER_INTERRUPT(__INTERRUPT__)   ((((__INTERRUPT__) & (uint32_t)(0xFFFFFFFFU ^ RTC_TAMPCR_TAMPXIE)) == 0x00U) && ((__INTERRUPT__) != (uint32_t)RESET))
 
#define IS_RTC_TAMPER_MASKFLAG_STATE(__STATE__)
 
#define IS_RTC_TAMPER_PIN(PIN)
 
#define IS_RTC_TAMPER_PRECHARGE_DURATION(__DURATION__)
 
#define IS_RTC_TAMPER_PRECHARGE_DURATION(DURATION)
 
#define IS_RTC_TAMPER_PULLUP_STATE(__STATE__)
 
#define IS_RTC_TAMPER_PULLUP_STATE(STATE)
 
#define IS_RTC_TAMPER_SAMPLING_FREQ(__FREQ__)
 
#define IS_RTC_TAMPER_SAMPLING_FREQ(FREQ)
 
#define IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION(__DETECTION__)
 
#define IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION(DETECTION)
 
#define IS_RTC_TAMPER_TRIGGER(__TRIGGER__)
 
#define IS_RTC_TAMPER_TRIGGER(TRIGGER)
 
#define IS_RTC_TIMESTAMP_PIN(__PIN__)
 
#define IS_RTC_TIMESTAMP_PIN(PIN)
 
#define IS_RTC_WAKEUP_CLOCK(__CLOCK__)
 
#define IS_RTC_WAKEUP_CLOCK(CLOCK)
 
#define IS_RTC_WAKEUP_COUNTER(__COUNTER__)   ((__COUNTER__) <= 0xFFFF)
 
#define IS_RTC_WAKEUP_COUNTER(COUNTER)   ((COUNTER) <= 0xFFFFU)
 
#define IS_TIMESTAMP_EDGE(__EDGE__)
 
#define IS_TIMESTAMP_EDGE(EDGE)
 

Detailed Description

Macro Definition Documentation

◆ IS_RTC_BKP [1/2]

#define IS_RTC_BKP (   __BKP__)    ((__BKP__) < (uint32_t) RTC_BKP_NUMBER)

Definition at line 938 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_BKP [2/2]

#define IS_RTC_BKP (   BKP)
Value:
(((BKP) == RTC_BKP_DR0) || \
((BKP) == RTC_BKP_DR1) || \
((BKP) == RTC_BKP_DR2) || \
((BKP) == RTC_BKP_DR3) || \
((BKP) == RTC_BKP_DR4) || \
((BKP) == RTC_BKP_DR5) || \
((BKP) == RTC_BKP_DR6) || \
((BKP) == RTC_BKP_DR7) || \
((BKP) == RTC_BKP_DR8) || \
((BKP) == RTC_BKP_DR9) || \
((BKP) == RTC_BKP_DR10) || \
((BKP) == RTC_BKP_DR11) || \
((BKP) == RTC_BKP_DR12) || \
((BKP) == RTC_BKP_DR13) || \
((BKP) == RTC_BKP_DR14) || \
((BKP) == RTC_BKP_DR15) || \
((BKP) == RTC_BKP_DR16) || \
((BKP) == RTC_BKP_DR17) || \
((BKP) == RTC_BKP_DR18) || \
((BKP) == RTC_BKP_DR19))

Definition at line 898 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_CALIB_OUTPUT [1/2]

#define IS_RTC_CALIB_OUTPUT (   __OUTPUT__)
Value:
(((__OUTPUT__) == RTC_CALIBOUTPUT_512HZ) || \
((__OUTPUT__) == RTC_CALIBOUTPUT_1HZ))

Definition at line 993 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_CALIB_OUTPUT [2/2]

#define IS_RTC_CALIB_OUTPUT (   OUTPUT)
Value:
(((OUTPUT) == RTC_CALIBOUTPUT_512HZ) || \
((OUTPUT) == RTC_CALIBOUTPUT_1HZ))

Definition at line 987 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_CALIB_SIGN

#define IS_RTC_CALIB_SIGN (   SIGN)
Value:
(((SIGN) == RTC_CALIBSIGN_POSITIVE) || \

Definition at line 972 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_CALIB_VALUE

#define IS_RTC_CALIB_VALUE (   VALUE)    ((VALUE) < 0x20U)

Definition at line 975 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_OUTPUT

#define IS_RTC_OUTPUT (   __OUTPUT__)
Value:
(((__OUTPUT__) == RTC_OUTPUT_DISABLE) || \
((__OUTPUT__) == RTC_OUTPUT_ALARMA) || \
((__OUTPUT__) == RTC_OUTPUT_ALARMB) || \
((__OUTPUT__) == RTC_OUTPUT_WAKEUP))

Definition at line 934 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_SHIFT_ADD1S [1/2]

#define IS_RTC_SHIFT_ADD1S (   __SEL__)
Value:
(((__SEL__) == RTC_SHIFTADD1S_RESET) || \
((__SEL__) == RTC_SHIFTADD1S_SET))

Definition at line 990 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_SHIFT_ADD1S [2/2]

#define IS_RTC_SHIFT_ADD1S (   SEL)
Value:
(((SEL) == RTC_SHIFTADD1S_RESET) || \
((SEL) == RTC_SHIFTADD1S_SET))

Definition at line 984 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_SHIFT_SUBFS [1/2]

#define IS_RTC_SHIFT_SUBFS (   __FS__)    ((__FS__) <= 0x00007FFF)

Definition at line 992 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_SHIFT_SUBFS [2/2]

#define IS_RTC_SHIFT_SUBFS (   FS)    ((FS) <= 0x00007FFFU)

Definition at line 986 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_SMOOTH_CALIB_MINUS [1/2]

#define IS_RTC_SMOOTH_CALIB_MINUS (   __VALUE__)    ((__VALUE__) <= 0x000001FF)

Definition at line 989 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_SMOOTH_CALIB_MINUS [2/2]

#define IS_RTC_SMOOTH_CALIB_MINUS (   VALUE)    ((VALUE) <= 0x000001FFU)

Definition at line 983 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_SMOOTH_CALIB_PERIOD [1/2]

#define IS_RTC_SMOOTH_CALIB_PERIOD (   __PERIOD__)
Value:
(((__PERIOD__) == RTC_SMOOTHCALIB_PERIOD_32SEC) || \
((__PERIOD__) == RTC_SMOOTHCALIB_PERIOD_16SEC) || \
((__PERIOD__) == RTC_SMOOTHCALIB_PERIOD_8SEC))

Definition at line 984 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_SMOOTH_CALIB_PERIOD [2/2]

#define IS_RTC_SMOOTH_CALIB_PERIOD (   PERIOD)
Value:
(((PERIOD) == RTC_SMOOTHCALIB_PERIOD_32SEC) || \
((PERIOD) == RTC_SMOOTHCALIB_PERIOD_16SEC) || \

Definition at line 977 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_SMOOTH_CALIB_PLUS [1/2]

#define IS_RTC_SMOOTH_CALIB_PLUS (   __PLUS__)
Value:
(((__PLUS__) == RTC_SMOOTHCALIB_PLUSPULSES_SET) || \

Definition at line 987 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_SMOOTH_CALIB_PLUS [2/2]

#define IS_RTC_SMOOTH_CALIB_PLUS (   PLUS)
Value:

Definition at line 980 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER [1/2]

#define IS_RTC_TAMPER (   __TAMPER__)    ((((__TAMPER__) & ((uint32_t)(0xFFFFFFFFU ^ RTC_TAMPCR_TAMPXE))) == 0x00U) && ((__TAMPER__) != (uint32_t)RESET))

Definition at line 941 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER [2/2]

#define IS_RTC_TAMPER (   TAMPER)    ((((TAMPER) & ((uint32_t)!(RTC_TAFCR_TAMP1E | RTC_TAFCR_TAMP2E))) == 0x00U) && ((TAMPER) != (uint32_t)RESET))

Definition at line 924 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_ERASE_MODE

#define IS_RTC_TAMPER_ERASE_MODE (   __MODE__)
Value:
(((__MODE__) == RTC_TAMPER_ERASE_BACKUP_ENABLE) || \

Definition at line 952 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_FILTER [1/2]

#define IS_RTC_TAMPER_FILTER (   __FILTER__)
Value:
(((__FILTER__) == RTC_TAMPERFILTER_DISABLE) || \
((__FILTER__) == RTC_TAMPERFILTER_2SAMPLE) || \
((__FILTER__) == RTC_TAMPERFILTER_4SAMPLE) || \
((__FILTER__) == RTC_TAMPERFILTER_8SAMPLE))

Definition at line 956 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_FILTER [2/2]

#define IS_RTC_TAMPER_FILTER (   FILTER)
Value:
(((FILTER) == RTC_TAMPERFILTER_DISABLE) || \
((FILTER) == RTC_TAMPERFILTER_2SAMPLE) || \
((FILTER) == RTC_TAMPERFILTER_4SAMPLE) || \
((FILTER) == RTC_TAMPERFILTER_8SAMPLE))

Definition at line 944 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_INTERRUPT

#define IS_RTC_TAMPER_INTERRUPT (   __INTERRUPT__)    ((((__INTERRUPT__) & (uint32_t)(0xFFFFFFFFU ^ RTC_TAMPCR_TAMPXIE)) == 0x00U) && ((__INTERRUPT__) != (uint32_t)RESET))

Definition at line 943 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_MASKFLAG_STATE

#define IS_RTC_TAMPER_MASKFLAG_STATE (   __STATE__)
Value:
(((__STATE__) == RTC_TAMPERMASK_FLAG_ENABLE) || \
((__STATE__) == RTC_TAMPERMASK_FLAG_DISABLE))

Definition at line 954 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_PIN

#define IS_RTC_TAMPER_PIN (   PIN)
Value:
(((PIN) == RTC_TAMPERPIN_DEFAULT) || \
((PIN) == RTC_TAMPERPIN_POS1))

Definition at line 930 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_PRECHARGE_DURATION [1/2]

#define IS_RTC_TAMPER_PRECHARGE_DURATION (   __DURATION__)
Value:
(((__DURATION__) == RTC_TAMPERPRECHARGEDURATION_1RTCCLK) || \
((__DURATION__) == RTC_TAMPERPRECHARGEDURATION_2RTCCLK) || \
((__DURATION__) == RTC_TAMPERPRECHARGEDURATION_4RTCCLK) || \

Definition at line 968 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_PRECHARGE_DURATION [2/2]

#define IS_RTC_TAMPER_PRECHARGE_DURATION (   DURATION)
Value:

Definition at line 956 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_PULLUP_STATE [1/2]

#define IS_RTC_TAMPER_PULLUP_STATE (   __STATE__)
Value:
(((__STATE__) == RTC_TAMPER_PULLUP_ENABLE) || \
((__STATE__) == RTC_TAMPER_PULLUP_DISABLE))

Definition at line 974 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_PULLUP_STATE [2/2]

#define IS_RTC_TAMPER_PULLUP_STATE (   STATE)
Value:
(((STATE) == RTC_TAMPER_PULLUP_ENABLE) || \

Definition at line 962 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_SAMPLING_FREQ [1/2]

#define IS_RTC_TAMPER_SAMPLING_FREQ (   __FREQ__)

◆ IS_RTC_TAMPER_SAMPLING_FREQ [2/2]

#define IS_RTC_TAMPER_SAMPLING_FREQ (   FREQ)

◆ IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION [1/2]

#define IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION (   __DETECTION__)
Value:
(((__DETECTION__) == RTC_TIMESTAMPONTAMPERDETECTION_ENABLE) || \

Definition at line 972 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION [2/2]

#define IS_RTC_TAMPER_TIMESTAMPONTAMPER_DETECTION (   DETECTION)
Value:

Definition at line 960 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_TRIGGER [1/2]

#define IS_RTC_TAMPER_TRIGGER (   __TRIGGER__)
Value:
(((__TRIGGER__) == RTC_TAMPERTRIGGER_RISINGEDGE) || \
((__TRIGGER__) == RTC_TAMPERTRIGGER_FALLINGEDGE) || \
((__TRIGGER__) == RTC_TAMPERTRIGGER_LOWLEVEL) || \
((__TRIGGER__) == RTC_TAMPERTRIGGER_HIGHLEVEL))

Definition at line 948 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TAMPER_TRIGGER [2/2]

#define IS_RTC_TAMPER_TRIGGER (   TRIGGER)
Value:
(((TRIGGER) == RTC_TAMPERTRIGGER_RISINGEDGE) || \
((TRIGGER) == RTC_TAMPERTRIGGER_FALLINGEDGE) || \
((TRIGGER) == RTC_TAMPERTRIGGER_LOWLEVEL) || \

Definition at line 940 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_TIMESTAMP_PIN [1/2]

#define IS_RTC_TIMESTAMP_PIN (   __PIN__)
Value:
(((__PIN__) == RTC_TIMESTAMPPIN_DEFAULT) || \
((__PIN__) == RTC_TIMESTAMPPIN_POS1) || \
((__PIN__) == RTC_TIMESTAMPPIN_POS2))

Definition at line 945 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_TIMESTAMP_PIN [2/2]

#define IS_RTC_TIMESTAMP_PIN (   PIN)
Value:
(((PIN) == RTC_TIMESTAMPPIN_DEFAULT) || \

Definition at line 937 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_WAKEUP_CLOCK [1/2]

#define IS_RTC_WAKEUP_CLOCK (   __CLOCK__)
Value:
(((__CLOCK__) == RTC_WAKEUPCLOCK_RTCCLK_DIV16) || \
((__CLOCK__) == RTC_WAKEUPCLOCK_RTCCLK_DIV8) || \
((__CLOCK__) == RTC_WAKEUPCLOCK_RTCCLK_DIV4) || \
((__CLOCK__) == RTC_WAKEUPCLOCK_RTCCLK_DIV2) || \
((__CLOCK__) == RTC_WAKEUPCLOCK_CK_SPRE_16BITS) || \

Definition at line 976 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_WAKEUP_CLOCK [2/2]

#define IS_RTC_WAKEUP_CLOCK (   CLOCK)
Value:

Definition at line 964 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_RTC_WAKEUP_COUNTER [1/2]

#define IS_RTC_WAKEUP_COUNTER (   __COUNTER__)    ((__COUNTER__) <= 0xFFFF)

Definition at line 983 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_RTC_WAKEUP_COUNTER [2/2]

#define IS_RTC_WAKEUP_COUNTER (   COUNTER)    ((COUNTER) <= 0xFFFFU)

Definition at line 971 of file stm32f4xx_hal_rtc_ex.h.

◆ IS_TIMESTAMP_EDGE [1/2]

#define IS_TIMESTAMP_EDGE (   __EDGE__)
Value:
(((__EDGE__) == RTC_TIMESTAMPEDGE_RISING) || \
((__EDGE__) == RTC_TIMESTAMPEDGE_FALLING))

Definition at line 939 of file stm32f7xx_hal_rtc_ex.h.

◆ IS_TIMESTAMP_EDGE [2/2]

#define IS_TIMESTAMP_EDGE (   EDGE)
Value:
(((EDGE) == RTC_TIMESTAMPEDGE_RISING) || \

Definition at line 918 of file stm32f4xx_hal_rtc_ex.h.

RTC_TAMPERPRECHARGEDURATION_2RTCCLK
#define RTC_TAMPERPRECHARGEDURATION_2RTCCLK
Definition: stm32f7xx_hal_rtc_ex.h:250
RTC_SMOOTHCALIB_PERIOD_16SEC
#define RTC_SMOOTHCALIB_PERIOD_16SEC
Definition: stm32f7xx_hal_rtc_ex.h:296
RTC_BKP_DR19
#define RTC_BKP_DR19
Definition: stm32f4xx_hal_rtc_ex.h:104
RTC_BKP_DR0
#define RTC_BKP_DR0
Definition: stm32f4xx_hal_rtc_ex.h:85
RTC_TAMPERMASK_FLAG_ENABLE
#define RTC_TAMPERMASK_FLAG_ENABLE
Definition: stm32f7xx_hal_rtc_ex.h:202
RTC_TAMPERFILTER_2SAMPLE
#define RTC_TAMPERFILTER_2SAMPLE
Definition: stm32f7xx_hal_rtc_ex.h:212
RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV2048
#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV2048
Definition: stm32f7xx_hal_rtc_ex.h:233
RTC_TIMESTAMPEDGE_RISING
#define RTC_TIMESTAMPEDGE_RISING
Definition: stm32f7xx_hal_rtc_ex.h:141
RTC_TAMPERTRIGGER_FALLINGEDGE
#define RTC_TAMPERTRIGGER_FALLINGEDGE
Definition: stm32f7xx_hal_rtc_ex.h:182
RTC_OUTPUT_ALARMB
#define RTC_OUTPUT_ALARMB
Definition: stm32f7xx_hal_rtc_ex.h:93
RTC_BKP_DR5
#define RTC_BKP_DR5
Definition: stm32f4xx_hal_rtc_ex.h:90
RTC_TAMPERPRECHARGEDURATION_4RTCCLK
#define RTC_TAMPERPRECHARGEDURATION_4RTCCLK
Definition: stm32f7xx_hal_rtc_ex.h:252
RTC_WAKEUPCLOCK_CK_SPRE_17BITS
#define RTC_WAKEUPCLOCK_CK_SPRE_17BITS
Definition: stm32f7xx_hal_rtc_ex.h:286
RTC_TIMESTAMPPIN_DEFAULT
#define RTC_TIMESTAMPPIN_DEFAULT
Definition: stm32f7xx_hal_rtc_ex.h:171
RTC_BKP_DR12
#define RTC_BKP_DR12
Definition: stm32f4xx_hal_rtc_ex.h:97
RTC_TAMPERPIN_DEFAULT
#define RTC_TAMPERPIN_DEFAULT
Definition: stm32f4xx_hal_rtc_ex.h:134
RTC_TAMPER_PULLUP_DISABLE
#define RTC_TAMPER_PULLUP_DISABLE
Definition: stm32f7xx_hal_rtc_ex.h:273
RTC_TAMPERTRIGGER_RISINGEDGE
#define RTC_TAMPERTRIGGER_RISINGEDGE
Definition: stm32f7xx_hal_rtc_ex.h:181
RTC_BKP_DR6
#define RTC_BKP_DR6
Definition: stm32f4xx_hal_rtc_ex.h:91
RTC_TAMPERFILTER_4SAMPLE
#define RTC_TAMPERFILTER_4SAMPLE
Definition: stm32f7xx_hal_rtc_ex.h:214
RTC_OUTPUT_WAKEUP
#define RTC_OUTPUT_WAKEUP
Definition: stm32f7xx_hal_rtc_ex.h:94
RTC_BKP_DR4
#define RTC_BKP_DR4
Definition: stm32f4xx_hal_rtc_ex.h:89
RTC_SMOOTHCALIB_PERIOD_8SEC
#define RTC_SMOOTHCALIB_PERIOD_8SEC
Definition: stm32f7xx_hal_rtc_ex.h:298
RTC_BKP_DR1
#define RTC_BKP_DR1
Definition: stm32f4xx_hal_rtc_ex.h:86
RTC_TIMESTAMPPIN_POS1
#define RTC_TIMESTAMPPIN_POS1
Definition: stm32f7xx_hal_rtc_ex.h:172
RTC_BKP_DR13
#define RTC_BKP_DR13
Definition: stm32f4xx_hal_rtc_ex.h:98
RTC_BKP_DR18
#define RTC_BKP_DR18
Definition: stm32f4xx_hal_rtc_ex.h:103
RTC_TAMPERFILTER_8SAMPLE
#define RTC_TAMPERFILTER_8SAMPLE
Definition: stm32f7xx_hal_rtc_ex.h:216
RTC_TAMPERFILTER_DISABLE
#define RTC_TAMPERFILTER_DISABLE
Definition: stm32f7xx_hal_rtc_ex.h:210
RTC_OUTPUT_ALARMA
#define RTC_OUTPUT_ALARMA
Definition: stm32f7xx_hal_rtc_ex.h:92
RTC_TAMPERTRIGGER_LOWLEVEL
#define RTC_TAMPERTRIGGER_LOWLEVEL
Definition: stm32f7xx_hal_rtc_ex.h:183
RTC_TIMESTAMPEDGE_FALLING
#define RTC_TIMESTAMPEDGE_FALLING
Definition: stm32f7xx_hal_rtc_ex.h:142
RTC_BKP_DR16
#define RTC_BKP_DR16
Definition: stm32f4xx_hal_rtc_ex.h:101
RTC_TAMPER_ERASE_BACKUP_DISABLE
#define RTC_TAMPER_ERASE_BACKUP_DISABLE
Definition: stm32f7xx_hal_rtc_ex.h:193
RTC_TAMPERPRECHARGEDURATION_8RTCCLK
#define RTC_TAMPERPRECHARGEDURATION_8RTCCLK
Definition: stm32f7xx_hal_rtc_ex.h:254
RTC_SMOOTHCALIB_PLUSPULSES_RESET
#define RTC_SMOOTHCALIB_PLUSPULSES_RESET
Definition: stm32f7xx_hal_rtc_ex.h:310
RTC_TAMPER_ERASE_BACKUP_ENABLE
#define RTC_TAMPER_ERASE_BACKUP_ENABLE
Definition: stm32f7xx_hal_rtc_ex.h:192
RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV32768
#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV32768
Definition: stm32f7xx_hal_rtc_ex.h:225
RTC_OUTPUT_DISABLE
#define RTC_OUTPUT_DISABLE
Definition: stm32f7xx_hal_rtc_ex.h:91
RTC_TAMPER_PULLUP_ENABLE
#define RTC_TAMPER_PULLUP_ENABLE
Definition: stm32f7xx_hal_rtc_ex.h:272
RTC_CALIBSIGN_POSITIVE
#define RTC_CALIBSIGN_POSITIVE
Definition: stm32f4xx_hal_rtc_ex.h:253
RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV4096
#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV4096
Definition: stm32f7xx_hal_rtc_ex.h:231
RTC_BKP_DR15
#define RTC_BKP_DR15
Definition: stm32f4xx_hal_rtc_ex.h:100
RTC_WAKEUPCLOCK_RTCCLK_DIV2
#define RTC_WAKEUPCLOCK_RTCCLK_DIV2
Definition: stm32f7xx_hal_rtc_ex.h:284
RTC_SHIFTADD1S_RESET
#define RTC_SHIFTADD1S_RESET
Definition: stm32f7xx_hal_rtc_ex.h:319
RTC_BKP_DR9
#define RTC_BKP_DR9
Definition: stm32f4xx_hal_rtc_ex.h:94
RTC_CALIBOUTPUT_512HZ
#define RTC_CALIBOUTPUT_512HZ
Definition: stm32f7xx_hal_rtc_ex.h:328
RTC_BKP_DR17
#define RTC_BKP_DR17
Definition: stm32f4xx_hal_rtc_ex.h:102
RTC_TAMPERTRIGGER_HIGHLEVEL
#define RTC_TAMPERTRIGGER_HIGHLEVEL
Definition: stm32f7xx_hal_rtc_ex.h:184
RTC_BKP_DR3
#define RTC_BKP_DR3
Definition: stm32f4xx_hal_rtc_ex.h:88
RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV512
#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV512
Definition: stm32f7xx_hal_rtc_ex.h:237
RTC_WAKEUPCLOCK_CK_SPRE_16BITS
#define RTC_WAKEUPCLOCK_CK_SPRE_16BITS
Definition: stm32f7xx_hal_rtc_ex.h:285
RTC_WAKEUPCLOCK_RTCCLK_DIV16
#define RTC_WAKEUPCLOCK_RTCCLK_DIV16
Definition: stm32f7xx_hal_rtc_ex.h:281
RTC_SMOOTHCALIB_PERIOD_32SEC
#define RTC_SMOOTHCALIB_PERIOD_32SEC
Definition: stm32f7xx_hal_rtc_ex.h:294
RTC_BKP_DR7
#define RTC_BKP_DR7
Definition: stm32f4xx_hal_rtc_ex.h:92
RTC_CALIBOUTPUT_1HZ
#define RTC_CALIBOUTPUT_1HZ
Definition: stm32f7xx_hal_rtc_ex.h:329
RTC_TIMESTAMPONTAMPERDETECTION_ENABLE
#define RTC_TIMESTAMPONTAMPERDETECTION_ENABLE
Definition: stm32f7xx_hal_rtc_ex.h:263
RTC_BKP_DR11
#define RTC_BKP_DR11
Definition: stm32f4xx_hal_rtc_ex.h:96
RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV8192
#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV8192
Definition: stm32f7xx_hal_rtc_ex.h:229
RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV256
#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV256
Definition: stm32f7xx_hal_rtc_ex.h:239
RTC_TAMPERPRECHARGEDURATION_1RTCCLK
#define RTC_TAMPERPRECHARGEDURATION_1RTCCLK
Definition: stm32f7xx_hal_rtc_ex.h:248
RTC_WAKEUPCLOCK_RTCCLK_DIV4
#define RTC_WAKEUPCLOCK_RTCCLK_DIV4
Definition: stm32f7xx_hal_rtc_ex.h:283
RTC_BKP_DR8
#define RTC_BKP_DR8
Definition: stm32f4xx_hal_rtc_ex.h:93
RTC_BKP_DR2
#define RTC_BKP_DR2
Definition: stm32f4xx_hal_rtc_ex.h:87
RTC_BKP_DR10
#define RTC_BKP_DR10
Definition: stm32f4xx_hal_rtc_ex.h:95
RTC_CALIBSIGN_NEGATIVE
#define RTC_CALIBSIGN_NEGATIVE
Definition: stm32f4xx_hal_rtc_ex.h:254
RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV16384
#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV16384
Definition: stm32f7xx_hal_rtc_ex.h:227
RTC_TAMPERMASK_FLAG_DISABLE
#define RTC_TAMPERMASK_FLAG_DISABLE
Definition: stm32f7xx_hal_rtc_ex.h:201
RTC_TIMESTAMPONTAMPERDETECTION_DISABLE
#define RTC_TIMESTAMPONTAMPERDETECTION_DISABLE
Definition: stm32f7xx_hal_rtc_ex.h:264
RTC_WAKEUPCLOCK_RTCCLK_DIV8
#define RTC_WAKEUPCLOCK_RTCCLK_DIV8
Definition: stm32f7xx_hal_rtc_ex.h:282
RTC_TAMPERPIN_POS1
#define RTC_TAMPERPIN_POS1
Definition: stm32f4xx_hal_rtc_ex.h:137
RTC_SHIFTADD1S_SET
#define RTC_SHIFTADD1S_SET
Definition: stm32f7xx_hal_rtc_ex.h:320
RTC_TIMESTAMPPIN_POS2
#define RTC_TIMESTAMPPIN_POS2
Definition: stm32f7xx_hal_rtc_ex.h:173
RTC_SMOOTHCALIB_PLUSPULSES_SET
#define RTC_SMOOTHCALIB_PLUSPULSES_SET
Definition: stm32f7xx_hal_rtc_ex.h:307
RTC_BKP_DR14
#define RTC_BKP_DR14
Definition: stm32f4xx_hal_rtc_ex.h:99
RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV1024
#define RTC_TAMPERSAMPLINGFREQ_RTCCLK_DIV1024
Definition: stm32f7xx_hal_rtc_ex.h:235


picovoice_driver
Author(s):
autogenerated on Fri Apr 1 2022 02:15:07