Statistics
| Branch: | Tag: | Revision:

amiro-os / doc / AMiRo-OS.uml @ ded1ded7

History | View | Annotate | Download (2.71 KB)

1 0039ffcb Thomas Schöpping
/'
2
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
3 96621a83 Thomas Schöpping
Copyright (C) 2016..2020  Thomas Schöpping et al.
4 0039ffcb Thomas Schöpping
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 8376530c Thomas Schöpping
'-------------------------------------------------------------------------------
23
' AMiRo-BLT
24
'-------------------------------------------------------------------------------
25 0039ffcb Thomas Schöpping
26
!include ../bootloader/AMiRo-BLT/Target/Doc/AMiRo-BLT.uml
27 8376530c Thomas Schöpping
28
'-------------------------------------------------------------------------------
29
' ChibiOS
30
'-------------------------------------------------------------------------------
31
32 169a7bd6 Thomas Schöpping
node "ChibiOS" as ChibiOS_node {
33 8376530c Thomas Schöpping
	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 169a7bd6 Thomas Schöpping
	interface mcuconf.h #lightgrey
40
	interface halconf.h #lightgrey
41
	interface chconf.h #lightgrey
42
43 8376530c Thomas Schöpping
	component "ChibiOS/HAL" as ChibiOS_HAL #lightgrey
44 169a7bd6 Thomas Schöpping
	component "ChibiOS/RT" as ChibiOS_RT #lightgrey
45
46 8376530c Thomas Schöpping
	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 0039ffcb Thomas Schöpping
!include ../periphery-lld/AMiRo-LLD/docs/AMiRo-LLD.uml
63
64 8376530c Thomas Schöpping
'-------------------------------------------------------------------------------
65
' AMiRo-OS
66
'-------------------------------------------------------------------------------
67
68
node "AMiRo-OS" as AMiRoOS_node {
69 169a7bd6 Thomas Schöpping
	interface osconf.h
70 8376530c Thomas Schöpping
	interface amiroos.h
71
72
	component "AMiRo-OS" as AMiRoOS
73 169a7bd6 Thomas Schöpping
74 8376530c Thomas Schöpping
	AMiRoOS -up-( osconf.h
75
	AMiRoOS -up- amiroos.h
76
}
77 0039ffcb Thomas Schöpping
78 169a7bd6 Thomas Schöpping
'-------------------------------------------------------------------------------
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 d796dcdf Thomas Schöpping
AMiRoOS --( alldh
90 169a7bd6 Thomas Schöpping
AMiRoOS -- periphAL.h
91
92 0039ffcb Thomas Schöpping
@enduml