amiro-os / doc / AMiRo-OS.uml @ 7387fb42
History | View | Annotate | Download (2.71 KB)
1 |
/' |
---|---|
2 |
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform. |
3 |
Copyright (C) 2016..2020 Thomas Schöpping et al. |
4 |
|
5 |
This program is free software: you can redistribute it and/or modify |
6 |
it under the terms of the GNU General Public License as published by |
7 |
the Free Software Foundation, either version 3 of the License, or |
8 |
(at your option) any later version. |
9 |
|
10 |
This program is distributed in the hope that it will be useful, |
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 |
GNU General Public License for more details. |
14 |
|
15 |
You should have received a copy of the GNU General Public License |
16 |
along with this program. If not, see <http://www.gnu.org/licenses/>. |
17 |
'/ |
18 |
|
19 |
@startuml |
20 |
skinparam componentStyle uml2 |
21 |
|
22 |
'------------------------------------------------------------------------------- |
23 |
' AMiRo-BLT |
24 |
'------------------------------------------------------------------------------- |
25 |
|
26 |
!include ../bootloader/AMiRo-BLT/Target/Doc/AMiRo-BLT.uml |
27 |
|
28 |
'------------------------------------------------------------------------------- |
29 |
' ChibiOS |
30 |
'------------------------------------------------------------------------------- |
31 |
|
32 |
node "ChibiOS" as ChibiOS_node { |
33 |
interface hal.h #lightgrey |
34 |
interface osal.h #lightgrey |
35 |
interface cmsis.h #lightgrey |
36 |
interface ch.h #lightgrey |
37 |
interface ch.hpp #lightgrey |
38 |
|
39 |
interface mcuconf.h #lightgrey |
40 |
interface halconf.h #lightgrey |
41 |
interface chconf.h #lightgrey |
42 |
|
43 |
component "ChibiOS/HAL" as ChibiOS_HAL #lightgrey |
44 |
component "ChibiOS/RT" as ChibiOS_RT #lightgrey |
45 |
|
46 |
ChibiOS_HAL -up-( mcuconf.h |
47 |
ChibiOS_HAL -up-( halconf.h |
48 |
ChibiOS_HAL -up- hal.h |
49 |
ChibiOS_HAL -up-( osal.h |
50 |
ChibiOS_RT -up-( chconf.h |
51 |
ChibiOS_RT -up-( hal.h |
52 |
ChibiOS_RT -up- osal.h |
53 |
ChibiOS_RT -up- cmsis.h |
54 |
ChibiOS_RT -up- ch.h |
55 |
ChibiOS_RT -up- ch.hpp |
56 |
} |
57 |
|
58 |
'------------------------------------------------------------------------------- |
59 |
' AMiRo-LLD |
60 |
'------------------------------------------------------------------------------- |
61 |
|
62 |
!include ../periphery-lld/AMiRo-LLD/docs/AMiRo-LLD.uml |
63 |
|
64 |
'------------------------------------------------------------------------------- |
65 |
' AMiRo-OS |
66 |
'------------------------------------------------------------------------------- |
67 |
|
68 |
node "AMiRo-OS" as AMiRoOS_node { |
69 |
interface osconf.h |
70 |
interface amiroos.h |
71 |
|
72 |
component "AMiRo-OS" as AMiRoOS |
73 |
|
74 |
AMiRoOS -up-( osconf.h |
75 |
AMiRoOS -up- amiroos.h |
76 |
} |
77 |
|
78 |
'------------------------------------------------------------------------------- |
79 |
' dependencies |
80 |
'------------------------------------------------------------------------------- |
81 |
|
82 |
AMiRoOS -- mcuconf.h |
83 |
AMiRoOS -- halconf.h |
84 |
AMiRoOS -- chconf.h |
85 |
AMiRoOS --( hal.h |
86 |
AMiRoOS --( ch.h |
87 |
AMiRoOS --( amiroblt.h |
88 |
AMiRoOS -- alldconf.h |
89 |
AMiRoOS --( alldh |
90 |
AMiRoOS -- periphAL.h |
91 |
|
92 |
@enduml |
93 |
|