summaryrefslogtreecommitdiffstats
path: root/images/user/exe-vert-stack.puml
blob: 720806b4909e627a711730229d26cd3712ac33fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
'
' 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