diff options
author | Oxore <oxore@protonmail.com> | 2023-03-05 21:51:51 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-03-05 21:51:51 +0300 |
commit | 2f4ef73dbafd14095fcb92cf5afeb598e453084c (patch) | |
tree | afa5011dedafcf52575a0457fef5ddc006d9f01e /third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_rtc.c | |
parent | 1e78222d516089462a7c3d1de23604e81851eec2 (diff) |
Fix warnings, part2
Diffstat (limited to 'third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_rtc.c')
-rw-r--r-- | third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_rtc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_rtc.c b/third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_rtc.c index f0481d1..7b1f7ac 100644 --- a/third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_rtc.c +++ b/third_party/STM32F0xx_StdPeriph_Driver/src/stm32f0xx_rtc.c @@ -1350,6 +1350,7 @@ void RTC_AlarmSubSecondConfig(uint32_t RTC_Alarm, uint32_t RTC_AlarmSubSecondVal */ uint32_t RTC_GetAlarmSubSecond(uint32_t RTC_Alarm) { + (void)RTC_Alarm; uint32_t tmpreg = 0; /* Get the RTC_ALRMAR register */ |