1

Final pre-release

This commit is contained in:
2023-03-02 17:29:30 +01:00
parent 01b1be0629
commit 3f02dfd309
47 changed files with 4803 additions and 1836 deletions

View File

@ -0,0 +1,19 @@
@startuml
'https://plantuml.com/sequence-diagram
title Interrupt Handler Execution
footer The lifetimes symbolize the current code execution by the CPU.
participant main as "Main Thread"
participant handler as "Interrupt Handler"
==Interrupt Request==
activate main
main -> handler --: Switch context to interrupt handler
activate handler
handler -> handler: Handle the interrupt
main <- handler --: Switch back to previous context
activate main
==Interrupt Handled==
@enduml