8000 stm32RTC start alarm with a 64bit accuracy on Subseconds param by FRASTM · Pull Request #109 · stm32duino/STM32RTC · GitHub
[go: up one dir, main page]

Skip to content

stm32RTC start alarm with a 64bit accuracy on Subseconds param #109

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup: typo
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
  • Loading branch information
fpistm authored Aug 19, 2024
commit ba9f36fb5b657177886bcccad372c47371639ca6
2 changes: 1 addition & 1 deletion src/rtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ void RTC_GetDate(uint8_t *year, uint8_t *month, uint8_t *day, uint8_t *wday)
* @param hours: 0-12 or 0-23 depends on the hours mode.
* @param minutes: 0-59
* @param seconds: 0-59
* @param subSeconds: 0-999 milliseeconds or 64bit nb of milliseconds in no BCD mode
* @param subSeconds: 0-999 milliseconds or 64bit nb of milliseconds in no BCD mode
* @param period: HOUR_AM or HOUR_PM if in 12 hours mode else ignored.
* @param mask: configure alarm behavior using alarmMask_t combination.
* See AN4579 Table 5 for possible values.
Expand Down
0