spelling: separate

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:40:53 -05:00
parent 394c11d071
commit 586db5b942
4 changed files with 6 additions and 6 deletions

View file

@ -30,11 +30,11 @@ typedef uint64_t RtcTicks;
void rtc_init(void);
//! Calibrate the RTC driver using the given crystal frequency (in mHz).
//! This is a seperate step because rtc_init needs to run incredibly early in the startup process
//! This is a separate step because rtc_init needs to run incredibly early in the startup process
//! and the manufacturing registry won't be initialized yet.
void rtc_calibrate_frequency(uint32_t frequency);
//! Initialize any timers the RTC driver may need. This is a seperate step than rtc_init because
//! Initialize any timers the RTC driver may need. This is a separate step than rtc_init because
//! rtc_init needs to run incredibly early in the startup process and at that time the timer
//! system won't be initialized yet.
void rtc_init_timers(void);