Finished Timer IRQ abstraction

This commit is contained in:
2025-08-28 20:56:30 -07:00
parent 4900cde915
commit 55ca8d5360
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
//
// Created by Luca on 8/28/2025.
//
#include "SHAL_TIMER_CALLBACK.h"
void registerTimerCallback(Timer_Key key, TimerCallback callback){
timer_callbacks[static_cast<int>(key)] = callback;
}