mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-14 19:29:44 +08:00
57 lines
651 B
Plaintext
57 lines
651 B
Plaintext
'
|
|
' Executable Application Vertical Stack
|
|
'
|
|
' Copyright (c) 2018 Chris Johns <chrisj@rtems.org>
|
|
' All rights reserved.
|
|
'
|
|
@startuml
|
|
|
|
node Application [
|
|
<b>Application
|
|
----
|
|
Management
|
|
....
|
|
Control
|
|
....
|
|
Workers
|
|
....
|
|
Protocol
|
|
]
|
|
|
|
note right of Application
|
|
High Level
|
|
end note
|
|
|
|
node 3rdParty [
|
|
<b>3rd Party Packages
|
|
----
|
|
Protobufs
|
|
....
|
|
Networking (libbsd)
|
|
]
|
|
|
|
node RTEMS [
|
|
<b>RTEMS
|
|
----
|
|
API
|
|
....
|
|
Kernel
|
|
....
|
|
Drivers
|
|
....
|
|
BSP
|
|
]
|
|
node Hardware [
|
|
<b>Hardware
|
|
]
|
|
|
|
Application .down. 3rdParty
|
|
3rdParty .down. RTEMS
|
|
RTEMS .down. Hardware
|
|
|
|
note right of Hardware
|
|
Low Level
|
|
end note
|
|
|
|
@enduml
|