feat: publish FreeRTOS C FC02 card

This commit is contained in:
2026-07-19 16:36:02 +02:00
commit e3420748ee
208 changed files with 57240 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
@startuml
!include card-uml-style.iuml
scale 900 width
hide footbox
skinparam ParticipantPadding 18
participant "main" as Main
participant "workerA ctx" as A
participant "workerB ctx" as B
participant "sum_task_entry" as Entry
participant "FreeRTOS" as Kernel
participant "supervisor" as Supervisor
Main -> A : <b>01</b> static context prepared
||34||
Main -> A : <b>02</b> create_worker(&workerA)
||34||
Main -> Kernel : <b>03</b> xTaskCreate(entry, &workerA)
activate Kernel
||34||
Kernel --> A : <b>04</b> handle != NULL; READY
deactivate Kernel
||34||
Main -> Kernel : <b>05</b> vTaskStartScheduler()
activate Kernel
note over Main,Supervisor
Continue on part 2/2 with the same participants and the same contexts.
end note
@enduml