Timed waiting with hal_wait()

This commit is contained in:
2025-08-31 00:21:17 +02:00
parent 73f27f730b
commit 13ab117b1b
3 changed files with 19 additions and 12 deletions

View File

@ -34,3 +34,7 @@ void hal_init_withmalloc(void) {
hal_intr_disable();
}
void hal_wait(uint32_t ms) {
pit_wait(ms);
}