Question.2
A developer forgets to register a callback:
void (*callback)(void) = nullptr; void Button_ISR() { callback(); // No null check! }
What happens when the ISR fires?
Select Answer
Nothing
Hard fault
The ISR is skipped
Compilation error