-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME-directory-struct.txt
135 lines (134 loc) · 5.22 KB
/
README-directory-struct.txt
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
.
├── api
│ ├── gateway
│ └── hal
├── doc
├── scripts
│ ├── build-scripts
│ └── help-scripts
│ └── git-aware-prompt
├── src
│ ├── bare-metal
│ │ ├── linux-makecontext
│ │ │ └── hal -> ../linux-x86/hal/
│ │ ├── linux-x86
│ │ │ └── hal
│ │ ├── stm32f4
│ │ │ ├── CMSIS
│ │ │ │ ├── Device
│ │ │ │ │ └── ST
│ │ │ │ │ └── STM32F4xx
│ │ │ │ │ └── Include
│ │ │ │ └── Include
│ │ │ ├── examples
│ │ │ ├── hal
│ │ │ ├── scripts
│ │ │ ├── startup
│ │ │ └── STM32F4xx_StdPeriph_Driver
│ │ │ ├── inc
│ │ │ └── src
│ │ └── template
│ │ └── README-how-to-port
│ ├── bare-metal-generic
│ │ └── ip
│ │ └── lwip
│ │ ├── core
│ │ ├── include
│ │ │ ├── arch
│ │ │ ├── lwip
│ │ │ └── netif
│ │ └── netif
│ ├── independent
│ │ └── gateway
│ ├── on-posix
│ │ └── hal -> ../bare-metal/linux-x86/hal
│ └── on-posix-mac
│ └── hal
├── support
│ ├── support-libs
│ │ └── ccsds -> ../support-programs/serializer/ccsds
│ ├── support-programs
│ │ ├── maskgenerator
│ │ │ ├── examples
│ │ │ └── qt-example
│ │ │ └── qtdisplay
│ │ ├── middleware-standalone
│ │ │ ├── api
│ │ │ │ ├── gateway
│ │ │ │ └── hal
│ │ │ ├── examples
│ │ │ │ ├── on-linux
│ │ │ │ └── on-rodos
│ │ │ └── src
│ │ │ ├── independent
│ │ │ ├── linux
│ │ │ │ └── hal
│ │ │ └── stm32f4
│ │ │ └── hal
│ │ ├── serializer
│ │ │ ├── ccsds
│ │ │ │ ├── generated
│ │ │ │ └── header-definitions
│ │ │ ├── ccsds-envelop-tutorial
│ │ │ ├── example-minimal-standalone
│ │ │ │ └── include
│ │ │ ├── example-on-rodos
│ │ │ │ └── include
│ │ │ ├── generator
│ │ │ │ └── parser
│ │ │ │ └── src
│ │ │ ├── test
│ │ │ │ └── include
│ │ │ └── test_with-virtual_call-for-gateway
│ │ │ └── include
│ │ ├── telecommand-generator
│ │ │ └── generated-examples
│ │ ├── timing-display-octave
│ │ └── udpinterface
│ └── tools
├── tmp
└── tutorials
├── 10-first-steps
│ └── gps
├── 20-core
│ ├── shared-stack-activity
│ └── tutorials-with-acceptable-warnings
├── 30-communication-and-bbs
│ ├── 10-alice-bob-charly
│ ├── 20-middleware
│ ├── 30-middleware-collector
│ ├── 40-middleware-distributed
│ ├── 50-middleware-miscs
│ ├── 60-middleware-ping
│ └── 80-gateway
│ ├── uart
│ └── uart-can-udp
├── 40-support-lib
│ └── matlib
│ ├── geodetic
│ ├── lowpassfilter
│ ├── rotations
│ └── trust-kalmanfilter-for-informatics
├── 50-time-related
│ ├── 1pps-getriggered-scheduling
│ ├── network-time-sync
│ │ ├── client
│ │ └── server
│ └── time-triegged-protocoll
│ ├── client
│ └── server
├── 60-tutorial-big-application
│ ├── app01
│ ├── app02
│ ├── app03
│ ├── app04
│ │ ├── subdir1
│ │ ├── subdir2
│ │ └── subdir3
│ └── common
└── 70-network-and-io
├── 10-udp
│ └── udp-linux-standalone
├── 20-tcp
│ └── tcp-linux-standalone
└── 30-interrupts