amiro-os / core / src / aos_system.c @ d8ed8c1c
History | View | Annotate | Download (39.39 KB)
1 | e545e620 | Thomas Schöpping | /*
|
---|---|---|---|
2 | AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
|
||
3 | 84f0ce9e | Thomas Schöpping | Copyright (C) 2016..2019 Thomas Schöpping et al.
|
4 | e545e620 | 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 | 53710ca3 | Marc Rothmann | /**
|
20 | * @file aos_system.c
|
||
21 | * @brief System code.
|
||
22 | * @details Contains system initialization and shutdown routines
|
||
23 | * and system shell commands.
|
||
24 | *
|
||
25 | * @addtogroup aos_system
|
||
26 | * @{
|
||
27 | */
|
||
28 | |||
29 | e545e620 | Thomas Schöpping | #include <aos_system.h> |
30 | |||
31 | #include <amiroos.h> |
||
32 | #include <amiroblt.h> |
||
33 | 8399aeae | Thomas Schöpping | #include <module.h> |
34 | e545e620 | Thomas Schöpping | #include <string.h> |
35 | 8399aeae | Thomas Schöpping | #include <stdlib.h> |
36 | e545e620 | Thomas Schöpping | #if (AMIROOS_CFG_TESTS_ENABLE == true) |
37 | #include <ch_test.h> |
||
38 | 0128be0f | Marc Rothmann | #include <rt_test_root.h> |
39 | e545e620 | Thomas Schöpping | #endif
|
40 | |||
41 | /**
|
||
42 | * @brief Period of the system timer.
|
||
43 | */
|
||
44 | 1e5f7648 | Thomas Schöpping | #define SYSTIMER_PERIOD (TIME_MAX_SYSTIME - CH_CFG_ST_TIMEDELTA)
|
45 | e545e620 | Thomas Schöpping | |
46 | /**
|
||
47 | * @brief Width of the printable system info text.
|
||
48 | */
|
||
49 | #define SYSTEM_INFO_WIDTH 70 |
||
50 | |||
51 | ba516b61 | Thomas Schöpping | /**
|
52 | * @brief Width of the name column of the system info table.
|
||
53 | */
|
||
54 | #define SYSTEM_INFO_NAMEWIDTH 14 |
||
55 | |||
56 | e545e620 | Thomas Schöpping | /* forward declarations */
|
57 | static void _printSystemInfo(BaseSequentialStream* stream); |
||
58 | #if (AMIROOS_CFG_SHELL_ENABLE == true) |
||
59 | static int _shellcmd_configcb(BaseSequentialStream* stream, int argc, char* argv[]); |
||
60 | static int _shellcmd_infocb(BaseSequentialStream* stream, int argc, char* argv[]); |
||
61 | static int _shellcmd_shutdowncb(BaseSequentialStream* stream, int argc, char* argv[]); |
||
62 | #if (AMIROOS_CFG_TESTS_ENABLE == true) |
||
63 | static int _shellcmd_kerneltestcb(BaseSequentialStream* stream, int argc, char* argv[]); |
||
64 | #endif /* AMIROOS_CFG_TESTS_ENABLE == true */ |
||
65 | aed3754b | Thomas Schöpping | #endif /* AMIROOS_CFG_SHELL_ENABLE == true */ |
66 | e545e620 | Thomas Schöpping | |
67 | /**
|
||
68 | * @brief Timer to accumulate system uptime.
|
||
69 | */
|
||
70 | static virtual_timer_t _systimer;
|
||
71 | |||
72 | /**
|
||
73 | * @brief Accumulated system uptime.
|
||
74 | */
|
||
75 | static aos_timestamp_t _uptime;
|
||
76 | |||
77 | /**
|
||
78 | * @brief Timer register value of last accumulation.
|
||
79 | */
|
||
80 | static systime_t _synctime;
|
||
81 | |||
82 | 9ebb11a9 | Thomas Schöpping | #if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER == true)) || defined(__DOXYGEN__) |
83 | e545e620 | Thomas Schöpping | /**
|
84 | * @brief Timer to drive the SYS_SYNC signal for system wide time synchronization according to SSSP.
|
||
85 | */
|
||
86 | static virtual_timer_t _syssynctimer;
|
||
87 | |||
88 | /**
|
||
89 | * @brief Last uptime of system wide time synchronization.
|
||
90 | */
|
||
91 | static aos_timestamp_t _syssynctime;
|
||
92 | #endif
|
||
93 | |||
94 | 9ebb11a9 | Thomas Schöpping | #if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true)) || defined(__DOXYGEN__) |
95 | 2674917e | Thomas Schöpping | /**
|
96 | * @brief Offset between local clock and system wide synchronization signal.
|
||
97 | */
|
||
98 | 3e1a9c79 | Thomas Schöpping | static float _syssyncskew; |
99 | 2674917e | Thomas Schöpping | |
100 | /**
|
||
101 | * @brief Weighting factor for the low-pass filter used for calculating the @p _syssyncskew value.
|
||
102 | */
|
||
103 | 3e1a9c79 | Thomas Schöpping | #define SYSTEM_SYSSYNCSKEW_LPFACTOR (0.1f / AOS_SYSTEM_TIME_RESOLUTION) |
104 | 9ebb11a9 | Thomas Schöpping | #endif /* (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true) */ |
105 | 3e1a9c79 | Thomas Schöpping | |
106 | e545e620 | Thomas Schöpping | #if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__) |
107 | /**
|
||
108 | * @brief Shell thread working area.
|
||
109 | */
|
||
110 | THD_WORKING_AREA(_shell_wa, AMIROOS_CFG_SHELL_STACKSIZE); |
||
111 | |||
112 | /**
|
||
113 | * @brief Shell input buffer.
|
||
114 | */
|
||
115 | static char _shell_line[AMIROOS_CFG_SHELL_LINEWIDTH]; |
||
116 | |||
117 | /**
|
||
118 | * @brief Shell argument buffer.
|
||
119 | */
|
||
120 | static char* _shell_arglist[AMIROOS_CFG_SHELL_MAXARGS]; |
||
121 | |||
122 | /**
|
||
123 | * @brief Shell command to retrieve system information.
|
||
124 | */
|
||
125 | static aos_shellcommand_t _shellcmd_info = {
|
||
126 | /* name */ "module:info", |
||
127 | /* callback */ _shellcmd_infocb,
|
||
128 | /* next */ NULL, |
||
129 | }; |
||
130 | |||
131 | /**
|
||
132 | * @brief Shell command to set or retrieve system configuration.
|
||
133 | */
|
||
134 | static aos_shellcommand_t _shellcmd_config = {
|
||
135 | /* name */ "module:config", |
||
136 | /* callback */ _shellcmd_configcb,
|
||
137 | /* next */ NULL, |
||
138 | }; |
||
139 | |||
140 | /**
|
||
141 | * @brief Shell command to shutdown the system.
|
||
142 | */
|
||
143 | static aos_shellcommand_t _shellcmd_shutdown = {
|
||
144 | 1d3e002f | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
145 | e545e620 | Thomas Schöpping | /* name */ "system:shutdown", |
146 | 1d3e002f | Thomas Schöpping | #else
|
147 | /* name */ "module:shutdown", |
||
148 | #endif
|
||
149 | e545e620 | Thomas Schöpping | /* callback */ _shellcmd_shutdowncb,
|
150 | /* next */ NULL, |
||
151 | }; |
||
152 | #endif /* AMIROOS_CFG_SHELL_ENABLE == true */ |
||
153 | |||
154 | #if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
||
155 | /**
|
||
156 | * @brief Shell kommand to run a test of the ChibiOS/RT kernel.
|
||
157 | */
|
||
158 | static aos_shellcommand_t _shellcmd_kerneltest = {
|
||
159 | /* name */ "kernel:test", |
||
160 | /* callback */ _shellcmd_kerneltestcb,
|
||
161 | /* next */ NULL, |
||
162 | }; |
||
163 | #endif /* AMIROOS_CFG_TESTS_ENABLE == true */ |
||
164 | |||
165 | /**
|
||
166 | * @brief Global system object.
|
||
167 | */
|
||
168 | 6b53f6bf | Thomas Schöpping | aos_system_t aos; |
169 | e545e620 | Thomas Schöpping | |
170 | /**
|
||
171 | * @brief Print a separator line.
|
||
172 | *
|
||
173 | ba516b61 | Thomas Schöpping | * @param[in] stream Stream to print to or NULL to print to all system streams.
|
174 | e545e620 | Thomas Schöpping | * @param[in] c Character to use.
|
175 | * @param[in] n Length of the separator line.
|
||
176 | *
|
||
177 | * @return Number of characters printed.
|
||
178 | */
|
||
179 | static unsigned int _printSystemInfoSeparator(BaseSequentialStream* stream, const char c, const unsigned int n) |
||
180 | { |
||
181 | aosDbgCheck(stream != NULL);
|
||
182 | |||
183 | // print the specified character n times
|
||
184 | for (unsigned int i = 0; i < n; ++i) { |
||
185 | streamPut(stream, c); |
||
186 | } |
||
187 | streamPut(stream, '\n');
|
||
188 | |||
189 | return n+1; |
||
190 | } |
||
191 | |||
192 | /**
|
||
193 | * @brief Print a system information line.
|
||
194 | * @details Prints a system information line with the following format:
|
||
195 | * "<name>[spaces]fmt"
|
||
196 | * The combined width of "<name>[spaces]" can be specified in order to align <fmt> on multiple lines.
|
||
197 | * Note that there is not trailing newline added implicitely.
|
||
198 | *
|
||
199 | ba516b61 | Thomas Schöpping | * @param[in] stream Stream to print to or NULL to print to all system streams.
|
200 | e545e620 | Thomas Schöpping | * @param[in] name Name of the entry/line.
|
201 | * @param[in] namewidth Width of the name column.
|
||
202 | * @param[in] fmt Formatted string of information content.
|
||
203 | *
|
||
204 | * @return Number of characters printed.
|
||
205 | */
|
||
206 | static unsigned int _printSystemInfoLine(BaseSequentialStream* stream, const char* name, const unsigned int namewidth, const char* fmt, ...) |
||
207 | { |
||
208 | aosDbgCheck(stream != NULL);
|
||
209 | ba516b61 | Thomas Schöpping | aosDbgCheck(name != NULL);
|
210 | e545e620 | Thomas Schöpping | |
211 | unsigned int n = 0; |
||
212 | ba516b61 | Thomas Schöpping | va_list ap; |
213 | e545e620 | Thomas Schöpping | |
214 | ba516b61 | Thomas Schöpping | va_start(ap, fmt); |
215 | e545e620 | Thomas Schöpping | n += chprintf(stream, name); |
216 | while (n < namewidth) {
|
||
217 | streamPut(stream, ' ');
|
||
218 | ++n; |
||
219 | } |
||
220 | n += chvprintf(stream, fmt, ap); |
||
221 | va_end(ap); |
||
222 | |||
223 | 933df08e | Thomas Schöpping | streamPut(stream, '\n');
|
224 | ++n; |
||
225 | |||
226 | e545e620 | Thomas Schöpping | return n;
|
227 | } |
||
228 | |||
229 | /**
|
||
230 | * @brief Prints information about the system.
|
||
231 | *
|
||
232 | * @param[in] stream Stream to print to.
|
||
233 | */
|
||
234 | ba516b61 | Thomas Schöpping | static void _printSystemInfo(BaseSequentialStream* stream) |
235 | e545e620 | Thomas Schöpping | { |
236 | aosDbgCheck(stream != NULL);
|
||
237 | |||
238 | 933df08e | Thomas Schöpping | // local variables
|
239 | struct tm dt;
|
||
240 | aosSysGetDateTime(&dt); |
||
241 | |||
242 | // print static information about module and operating system
|
||
243 | e545e620 | Thomas Schöpping | _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
|
244 | 1816cbc6 | Thomas Schöpping | #ifdef BOARD_VERSION
|
245 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Module", SYSTEM_INFO_NAMEWIDTH, "%s (v%s)", BOARD_NAME, BOARD_VERSION); |
246 | 1816cbc6 | Thomas Schöpping | #else
|
247 | _printSystemInfoLine(stream, "Module", SYSTEM_INFO_NAMEWIDTH, "%s", BOARD_NAME); |
||
248 | #endif
|
||
249 | e545e620 | Thomas Schöpping | #ifdef PLATFORM_NAME
|
250 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Platform", SYSTEM_INFO_NAMEWIDTH, "%s", PLATFORM_NAME); |
251 | e545e620 | Thomas Schöpping | #endif
|
252 | #ifdef PORT_CORE_VARIANT_NAME
|
||
253 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Core Variant", SYSTEM_INFO_NAMEWIDTH, "%s", PORT_CORE_VARIANT_NAME); |
254 | e545e620 | Thomas Schöpping | #endif
|
255 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Architecture", SYSTEM_INFO_NAMEWIDTH, "%s", PORT_ARCHITECTURE_NAME); |
256 | e545e620 | Thomas Schöpping | _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
|
257 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
258 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "AMiRo-OS" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s (SSSP %u.%u)", AMIROOS_VERSION_MAJOR, AMIROOS_VERSION_MINOR, AMIROOS_VERSION_PATCH, AMIROOS_RELEASE_TYPE, AOS_SYSTEM_SSSP_VERSION_MAJOR, AOS_SYSTEM_SSSP_VERSION_MINOR); |
259 | 9ebb11a9 | Thomas Schöpping | #else
|
260 | _printSystemInfoLine(stream, "AMiRo-OS" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s", AMIROOS_VERSION_MAJOR, AMIROOS_VERSION_MINOR, AMIROOS_VERSION_PATCH, AMIROOS_RELEASE_TYPE); |
||
261 | #endif
|
||
262 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "AMiRo-LLD" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s (periphAL %u.%u)", AMIRO_LLD_VERSION_MAJOR, AMIRO_LLD_VERSION_MINOR, AMIRO_LLD_VERSION_PATCH, AMIRO_LLD_RELEASE_TYPE, PERIPHAL_VERSION_MAJOR, PERIPHAL_VERSION_MINOR); |
263 | _printSystemInfoLine(stream, "ChibiOS/RT" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s", CH_KERNEL_MAJOR, CH_KERNEL_MINOR, CH_KERNEL_PATCH, (CH_KERNEL_STABLE == 1) ? "stable" : "non-stable"); |
||
264 | _printSystemInfoLine(stream, "ChibiOS/HAL", SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s", CH_HAL_MAJOR, CH_HAL_MINOR, CH_HAL_PATCH, (CH_HAL_STABLE == 1) ? "stable" : "non-stable"); |
||
265 | _printSystemInfoLine(stream, "build type", SYSTEM_INFO_NAMEWIDTH,"%s", (AMIROOS_CFG_DBG == true) ? "debug" : "release"); |
||
266 | _printSystemInfoLine(stream, "Compiler" , SYSTEM_INFO_NAMEWIDTH, "%s %u.%u.%u", "GCC", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__); // TODO: support other compilers than GCC |
||
267 | _printSystemInfoLine(stream, "Compiled" , SYSTEM_INFO_NAMEWIDTH, "%s - %s", __DATE__, __TIME__); |
||
268 | |||
269 | // print static information about the bootloader
|
||
270 | e545e620 | Thomas Schöpping | _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
|
271 | if (BL_CALLBACK_TABLE_ADDRESS->magicNumber == BL_MAGIC_NUMBER) {
|
||
272 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "AMiRo-BLT", SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s (SSSP %u.%u)", BL_CALLBACK_TABLE_ADDRESS->vBootloader.major, BL_CALLBACK_TABLE_ADDRESS->vBootloader.minor, BL_CALLBACK_TABLE_ADDRESS->vBootloader.patch, |
273 | e545e620 | Thomas Schöpping | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Release) ? "stable" :
|
274 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_ReleaseCandidate) ? "release candidate" :
|
||
275 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Beta) ? "beta" :
|
||
276 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Alpha) ? "alpha" :
|
||
277 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_PreAlpha) ? "pre-alpha" :
|
||
278 | "<release type unknown>",
|
||
279 | BL_CALLBACK_TABLE_ADDRESS->vSSSP.major, BL_CALLBACK_TABLE_ADDRESS->vSSSP.minor); |
||
280 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
281 | 933df08e | Thomas Schöpping | if (BL_CALLBACK_TABLE_ADDRESS->vSSSP.major != AOS_SYSTEM_SSSP_VERSION_MAJOR) {
|
282 | ba516b61 | Thomas Schöpping | if (stream) {
|
283 | chprintf(stream, "WARNING: Bootloader and AMiRo-OS implement incompatible SSSP versions!\n");
|
||
284 | } else {
|
||
285 | aosprintf("WARNING: Bootloader and AMiRo-OS implement incompatible SSSP versions!\n");
|
||
286 | } |
||
287 | } |
||
288 | 9ebb11a9 | Thomas Schöpping | #endif
|
289 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Compiler", SYSTEM_INFO_NAMEWIDTH, "%s %u.%u.%u", (BL_CALLBACK_TABLE_ADDRESS->vCompiler.identifier == BL_VERSION_ID_GCC) ? "GCC" : "<compiler unknown>", BL_CALLBACK_TABLE_ADDRESS->vCompiler.major, BL_CALLBACK_TABLE_ADDRESS->vCompiler.minor, BL_CALLBACK_TABLE_ADDRESS->vCompiler.patch); // TODO: support other compilers than GCC |
290 | e545e620 | Thomas Schöpping | } else {
|
291 | ba516b61 | Thomas Schöpping | if (stream) {
|
292 | chprintf(stream, "Bootloader incompatible or not available.\n");
|
||
293 | } else {
|
||
294 | aosprintf("Bootloader incompatible or not available.\n");
|
||
295 | } |
||
296 | e545e620 | Thomas Schöpping | } |
297 | 933df08e | Thomas Schöpping | |
298 | // print dynamic information about the module
|
||
299 | 8399aeae | Thomas Schöpping | _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
|
300 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
301 | 933df08e | Thomas Schöpping | if (aos.sssp.moduleId != 0) { |
302 | _printSystemInfoLine(stream, "Module ID", SYSTEM_INFO_NAMEWIDTH, "%u", aos.sssp.moduleId); |
||
303 | } else {
|
||
304 | _printSystemInfoLine(stream, "Module ID", SYSTEM_INFO_NAMEWIDTH, "not available"); |
||
305 | } |
||
306 | 9ebb11a9 | Thomas Schöpping | #endif
|
307 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Date", SYSTEM_INFO_NAMEWIDTH, "%s %02u-%02u-%04u", (dt.tm_wday == 0) ? "Sunday" : (dt.tm_wday == 1) ? "Monday" : (dt.tm_wday == 2) ? "Tuesday" : (dt.tm_wday == 3) ? "Wednesday" : (dt.tm_wday == 4) ? "Thursday" : (dt.tm_wday == 5) ? "Friday" : "Saturday", |
308 | 8399aeae | Thomas Schöpping | dt.tm_mday, |
309 | dt.tm_mon + 1,
|
||
310 | dt.tm_year + 1900);
|
||
311 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Time", SYSTEM_INFO_NAMEWIDTH, "%02u:%02u:%02u", dt.tm_hour, dt.tm_min, dt.tm_sec); |
312 | |||
313 | e545e620 | Thomas Schöpping | _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
|
314 | |||
315 | return;
|
||
316 | } |
||
317 | |||
318 | #if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__) |
||
319 | /**
|
||
320 | * @brief Callback function for the system:config shell command.
|
||
321 | *
|
||
322 | * @param[in] stream The I/O stream to use.
|
||
323 | * @param[in] argc Number of arguments.
|
||
324 | * @param[in] argv List of pointers to the arguments.
|
||
325 | *
|
||
326 | * @return An exit status.
|
||
327 | * @retval AOS_OK The command was executed successfuly.
|
||
328 | * @retval AOS_INVALID_ARGUMENTS There was an issue with the arguemnts.
|
||
329 | */
|
||
330 | static int _shellcmd_configcb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
331 | { |
||
332 | ba516b61 | Thomas Schöpping | aosDbgCheck(stream != NULL);
|
333 | |||
334 | e545e620 | Thomas Schöpping | // local variables
|
335 | int retval = AOS_INVALID_ARGUMENTS;
|
||
336 | |||
337 | // if there are additional arguments
|
||
338 | if (argc > 1) { |
||
339 | // if the user wants to set or retrieve the shell configuration
|
||
340 | if (strcmp(argv[1], "--shell") == 0) { |
||
341 | // if the user wants to modify the shell configuration
|
||
342 | if (argc > 2) { |
||
343 | // if the user wants to modify the prompt
|
||
344 | if (strcmp(argv[2], "prompt") == 0) { |
||
345 | // there must be a further argument
|
||
346 | if (argc > 3) { |
||
347 | // handle the option
|
||
348 | if (strcmp(argv[3], "text") == 0) { |
||
349 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_MINIMAL; |
350 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
351 | } |
||
352 | else if (strcmp(argv[3], "minimal") == 0) { |
||
353 | 6b53f6bf | Thomas Schöpping | aos.shell.config |= AOS_SHELL_CONFIG_PROMPT_MINIMAL; |
354 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
355 | } |
||
356 | else if (strcmp(argv[3], "notime") == 0) { |
||
357 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~(AOS_SHELL_CONFIG_PROMPT_UPTIME | AOS_SHELL_CONFIG_PROMPT_DATETIME); |
358 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
359 | } |
||
360 | else if (strcmp(argv[3], "uptime") == 0) { |
||
361 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_DATETIME; |
362 | aos.shell.config |= AOS_SHELL_CONFIG_PROMPT_UPTIME; |
||
363 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
364 | } |
||
365 | 8399aeae | Thomas Schöpping | else if (strcmp(argv[3], "date&time") == 0) { |
366 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_UPTIME; |
367 | aos.shell.config |= AOS_SHELL_CONFIG_PROMPT_DATETIME; |
||
368 | 8399aeae | Thomas Schöpping | retval = AOS_OK; |
369 | } |
||
370 | else {
|
||
371 | chprintf(stream, "unknown option '%s'\n", argv[3]); |
||
372 | return AOS_INVALID_ARGUMENTS;
|
||
373 | } |
||
374 | e545e620 | Thomas Schöpping | } |
375 | } |
||
376 | // if the user wants to modify the string matching
|
||
377 | else if (strcmp(argv[2], "match") == 0) { |
||
378 | // there must be a further argument
|
||
379 | if (argc > 3) { |
||
380 | if (strcmp(argv[3], "casesensitive") == 0) { |
||
381 | 6b53f6bf | Thomas Schöpping | aos.shell.config |= AOS_SHELL_CONFIG_MATCH_CASE; |
382 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
383 | } |
||
384 | else if (strcmp(argv[3], "caseinsensitive") == 0) { |
||
385 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~AOS_SHELL_CONFIG_MATCH_CASE; |
386 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
387 | } |
||
388 | } |
||
389 | } |
||
390 | } |
||
391 | // if the user wants to retrieve the shell configuration
|
||
392 | else {
|
||
393 | chprintf(stream, "current shell configuration:\n");
|
||
394 | chprintf(stream, " prompt text: %s\n",
|
||
395 | 6b53f6bf | Thomas Schöpping | (aos.shell.prompt != NULL) ? aos.shell.prompt : "n/a"); |
396 | 8399aeae | Thomas Schöpping | char time[10]; |
397 | 6b53f6bf | Thomas Schöpping | switch (aos.shell.config & (AOS_SHELL_CONFIG_PROMPT_UPTIME | AOS_SHELL_CONFIG_PROMPT_DATETIME)) {
|
398 | 8399aeae | Thomas Schöpping | case AOS_SHELL_CONFIG_PROMPT_UPTIME:
|
399 | strcpy(time, "uptime"); break; |
||
400 | case AOS_SHELL_CONFIG_PROMPT_DATETIME:
|
||
401 | strcpy(time, "date&time"); break; |
||
402 | default:
|
||
403 | strcpy(time, "no time"); break; |
||
404 | } |
||
405 | e545e620 | Thomas Schöpping | chprintf(stream, " prompt style: %s, %s\n",
|
406 | 6b53f6bf | Thomas Schöpping | (aos.shell.config & AOS_SHELL_CONFIG_PROMPT_MINIMAL) ? "minimal" : "text", |
407 | 8399aeae | Thomas Schöpping | time); |
408 | e545e620 | Thomas Schöpping | chprintf(stream, " input method: %s\n",
|
409 | 6b53f6bf | Thomas Schöpping | (aos.shell.config & AOS_SHELL_CONFIG_INPUT_OVERWRITE) ? "replace" : "insert"); |
410 | e545e620 | Thomas Schöpping | chprintf(stream, " text matching: %s\n",
|
411 | 6b53f6bf | Thomas Schöpping | (aos.shell.config & AOS_SHELL_CONFIG_MATCH_CASE) ? "case sensitive" : "case insensitive"); |
412 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
413 | } |
||
414 | } |
||
415 | 8399aeae | Thomas Schöpping | // if the user wants to configure the date or time
|
416 | else if (strcmp(argv[1], "--date&time") == 0 && argc == 4) { |
||
417 | struct tm dt;
|
||
418 | aosSysGetDateTime(&dt); |
||
419 | unsigned int val = atoi(argv[3]); |
||
420 | if (strcmp(argv[2], "year") == 0) { |
||
421 | dt.tm_year = val - 1900;
|
||
422 | } |
||
423 | else if (strcmp(argv[2], "month") == 0 && val <= 12) { |
||
424 | dt.tm_mon = val - 1;
|
||
425 | } |
||
426 | else if (strcmp(argv[2], "day") == 0 && val <= 31) { |
||
427 | dt.tm_mday = val; |
||
428 | } |
||
429 | else if (strcmp(argv[2], "hour") == 0 && val < 24) { |
||
430 | dt.tm_hour = val; |
||
431 | } |
||
432 | else if (strcmp(argv[2], "minute") == 0 && val < 60) { |
||
433 | dt.tm_min = val; |
||
434 | } |
||
435 | else if (strcmp(argv[2], "second") == 0 && val < 60) { |
||
436 | dt.tm_sec = val; |
||
437 | } |
||
438 | else {
|
||
439 | chprintf(stream, "unknown option '%s' or value '%s'\n", argv[2], argv[3]); |
||
440 | return AOS_INVALID_ARGUMENTS;
|
||
441 | } |
||
442 | dt.tm_wday = aosTimeDayOfWeekFromDate(dt.tm_mday, dt.tm_mon+1, dt.tm_year+1900) % 7; |
||
443 | aosSysSetDateTime(&dt); |
||
444 | |||
445 | // read and print new date and time
|
||
446 | aosSysGetDateTime(&dt); |
||
447 | chprintf(stream, "date/time set to %02u:%02u:%02u @ %02u-%02u-%04u\n",
|
||
448 | dt.tm_hour, dt.tm_min, dt.tm_sec, |
||
449 | dt.tm_mday, dt.tm_mon+1, dt.tm_year+1900); |
||
450 | |||
451 | retval = AOS_OK; |
||
452 | } |
||
453 | e545e620 | Thomas Schöpping | } |
454 | |||
455 | // print help, if required
|
||
456 | if (retval == AOS_INVALID_ARGUMENTS) {
|
||
457 | chprintf(stream, "Usage: %s OPTION\n", argv[0]); |
||
458 | chprintf(stream, "Options:\n");
|
||
459 | chprintf(stream, " --help\n");
|
||
460 | chprintf(stream, " Print this help text.\n");
|
||
461 | chprintf(stream, " --shell [OPT [VAL]]\n");
|
||
462 | chprintf(stream, " Set or retrieve shell configuration.\n");
|
||
463 | chprintf(stream, " Possible OPTs and VALs are:\n");
|
||
464 | 8399aeae | Thomas Schöpping | chprintf(stream, " prompt text|minimal|uptime|date&time|notime\n");
|
465 | e545e620 | Thomas Schöpping | chprintf(stream, " Configures the prompt.\n");
|
466 | chprintf(stream, " match casesensitive|caseinsenitive\n");
|
||
467 | chprintf(stream, " Configures string matching.\n");
|
||
468 | 8399aeae | Thomas Schöpping | chprintf(stream, " --date&time OPT VAL\n");
|
469 | chprintf(stream, " Set the date/time value of OPT to VAL.\n");
|
||
470 | chprintf(stream, " Possible OPTs are:\n");
|
||
471 | chprintf(stream, " year\n");
|
||
472 | chprintf(stream, " month\n");
|
||
473 | chprintf(stream, " day\n");
|
||
474 | chprintf(stream, " hour\n");
|
||
475 | chprintf(stream, " minute\n");
|
||
476 | chprintf(stream, " second\n");
|
||
477 | e545e620 | Thomas Schöpping | } |
478 | |||
479 | return (argc > 1 && strcmp(argv[1], "--help") == 0) ? AOS_OK : retval; |
||
480 | } |
||
481 | |||
482 | /**
|
||
483 | * @brief Callback function for the system:info shell command.
|
||
484 | *
|
||
485 | * @param[in] stream The I/O stream to use.
|
||
486 | * @param[in] argc Number of arguments.
|
||
487 | * @param[in] argv List of pointers to the arguments.
|
||
488 | *
|
||
489 | * @return An exit status.
|
||
490 | * @retval AOS_OK The command was executed successfully.
|
||
491 | */
|
||
492 | static int _shellcmd_infocb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
493 | { |
||
494 | ba516b61 | Thomas Schöpping | aosDbgCheck(stream != NULL);
|
495 | |||
496 | e545e620 | Thomas Schöpping | (void)argc;
|
497 | (void)argv;
|
||
498 | |||
499 | // print system information
|
||
500 | _printSystemInfo(stream); |
||
501 | |||
502 | // print time measurement precision
|
||
503 | 3e1a9c79 | Thomas Schöpping | chprintf(stream, "module time resolution: %uus\n", AOS_SYSTEM_TIME_RESOLUTION);
|
504 | e545e620 | Thomas Schöpping | |
505 | // print system uptime
|
||
506 | aos_timestamp_t uptime; |
||
507 | aosSysGetUptime(&uptime); |
||
508 | chprintf(stream, "The system is running for\n");
|
||
509 | chprintf(stream, "%10u days\n", (uint32_t)(uptime / MICROSECONDS_PER_DAY));
|
||
510 | chprintf(stream, "%10u hours\n", (uint8_t)(uptime % MICROSECONDS_PER_DAY / MICROSECONDS_PER_HOUR));
|
||
511 | chprintf(stream, "%10u minutes\n", (uint8_t)(uptime % MICROSECONDS_PER_HOUR / MICROSECONDS_PER_MINUTE));
|
||
512 | chprintf(stream, "%10u seconds\n", (uint8_t)(uptime % MICROSECONDS_PER_MINUTE / MICROSECONDS_PER_SECOND));
|
||
513 | chprintf(stream, "%10u milliseconds\n", (uint16_t)(uptime % MICROSECONDS_PER_SECOND / MICROSECONDS_PER_MILLISECOND));
|
||
514 | chprintf(stream, "%10u microseconds\n", (uint16_t)(uptime % MICROSECONDS_PER_MILLISECOND / MICROSECONDS_PER_MICROSECOND));
|
||
515 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true) |
516 | 3e1a9c79 | Thomas Schöpping | chprintf(stream, "SSSP synchronization offset: %.3fus per %uus\n", _syssyncskew, AMIROOS_CFG_SSSP_SYSSYNCPERIOD);
|
517 | aed3754b | Thomas Schöpping | #endif /* AMIROOS_CFG_SSSP_MASTER != true && AMIROOS_CFG_PROFILE == true */ |
518 | 3e1a9c79 | Thomas Schöpping | _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
|
519 | e545e620 | Thomas Schöpping | |
520 | aed3754b | Thomas Schöpping | #if (AMIROOS_CFG_SHELL_ENABLE == true) |
521 | // print shell info
|
||
522 | chprintf(stream, "System shell information:\n");
|
||
523 | chprintf(stream, "\tnumber of commands: %u\n", aosShellCountCommands(&aos.shell));
|
||
524 | chprintf(stream, "\tmaximum line width: %u characters\n", aos.shell.linesize);
|
||
525 | chprintf(stream, "\tmaximum #arguments: %u\n", aos.shell.arglistsize);
|
||
526 | 5c9e9b9d | Thomas Schöpping | #if (AMIROOS_CFG_DBG == true) |
527 | aed3754b | Thomas Schöpping | chprintf(stream, "\tshell thread stack size: %u bytes\n", aosThdGetStacksize(aos.shell.thread));
|
528 | #if (CH_DBG_FILL_THREADS == TRUE)
|
||
529 | chprintf(stream, "\tstack peak utilization: %u bytes (%.2f%%)\n", aosThdGetStackPeakUtilization(aos.shell.thread), (float)aosThdGetStackPeakUtilization(aos.shell.thread) / (float)aosThdGetStacksize(aos.shell.thread) * 100.0f); |
||
530 | #endif /* CH_DBG_FILL_THREADS == TRUE */ |
||
531 | 5c9e9b9d | Thomas Schöpping | #endif /* AMIROOS_CFG_DBG == true */ |
532 | aed3754b | Thomas Schöpping | _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
|
533 | #endif /* AMIROOS_CFG_SHELL_ENABLE == true */ |
||
534 | |||
535 | e545e620 | Thomas Schöpping | return AOS_OK;
|
536 | } |
||
537 | |||
538 | /**
|
||
539 | * @brief Callback function for the sytem:shutdown shell command.
|
||
540 | *
|
||
541 | * @param[in] stream The I/O stream to use.
|
||
542 | * @param[in] argc Number of arguments.
|
||
543 | * @param[in] argv List of pointers to the arguments.
|
||
544 | *
|
||
545 | * @return An exit status.
|
||
546 | * @retval AOS_OK The command was executed successfully.
|
||
547 | * @retval AOS_INVALID_ARGUMENTS There was an issue with the arguments.
|
||
548 | */
|
||
549 | static int _shellcmd_shutdowncb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
550 | { |
||
551 | ba516b61 | Thomas Schöpping | aosDbgCheck(stream != NULL);
|
552 | |||
553 | 1d3e002f | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
554 | e545e620 | Thomas Schöpping | // print help text
|
555 | if (argc != 2 || strcmp(argv[1], "--help") == 0) { |
||
556 | chprintf(stream, "Usage: %s OPTION\n", argv[0]); |
||
557 | chprintf(stream, "Options:\n");
|
||
558 | chprintf(stream, " --help\n");
|
||
559 | chprintf(stream, " Print this help text.\n");
|
||
560 | chprintf(stream, " --hibernate, -h\n");
|
||
561 | chprintf(stream, " Shutdown to hibernate mode.\n");
|
||
562 | chprintf(stream, " Least energy saving, but allows charging via pins.\n");
|
||
563 | chprintf(stream, " --deepsleep, -d\n");
|
||
564 | chprintf(stream, " Shutdown to deepsleep mode.\n");
|
||
565 | chprintf(stream, " Minimum energy consumption while allowing charging via plug.\n");
|
||
566 | chprintf(stream, " --transportation, -t\n");
|
||
567 | chprintf(stream, " Shutdown to transportation mode.\n");
|
||
568 | chprintf(stream, " Minimum energy consumption with all interrupts disabled (no charging).\n");
|
||
569 | chprintf(stream, " --restart, -r\n");
|
||
570 | chprintf(stream, " Shutdown and restart system.\n");
|
||
571 | |||
572 | return (argc != 2) ? AOS_INVALID_ARGUMENTS : AOS_OK; |
||
573 | } |
||
574 | // handle argument
|
||
575 | else {
|
||
576 | if (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--hibernate") == 0) { |
||
577 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_HIBERNATE); |
578 | 9b5281e9 | Thomas Schöpping | chThdTerminate(chThdGetSelfX()); |
579 | e545e620 | Thomas Schöpping | return AOS_OK;
|
580 | } |
||
581 | else if (strcmp(argv[1], "-d") == 0 || strcmp(argv[1], "--deepsleep") == 0) { |
||
582 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_DEEPSLEEP); |
583 | 9b5281e9 | Thomas Schöpping | chThdTerminate(chThdGetSelfX()); |
584 | e545e620 | Thomas Schöpping | return AOS_OK;
|
585 | } |
||
586 | else if (strcmp(argv[1], "-t") == 0 || strcmp(argv[1], "--transportation") == 0) { |
||
587 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_TRANSPORTATION); |
588 | 9b5281e9 | Thomas Schöpping | chThdTerminate(chThdGetSelfX()); |
589 | e545e620 | Thomas Schöpping | return AOS_OK;
|
590 | } |
||
591 | else if (strcmp(argv[1], "-r") == 0 || strcmp(argv[1], "--restart") == 0) { |
||
592 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_RESTART); |
593 | 9b5281e9 | Thomas Schöpping | chThdTerminate(chThdGetSelfX()); |
594 | e545e620 | Thomas Schöpping | return AOS_OK;
|
595 | } |
||
596 | else {
|
||
597 | chprintf(stream, "unknown argument %s\n", argv[1]); |
||
598 | return AOS_INVALID_ARGUMENTS;
|
||
599 | } |
||
600 | } |
||
601 | 1d3e002f | Thomas Schöpping | #else /* AMIROOS_CFG_SSSP_ENABLE == false */ |
602 | (void)argv;
|
||
603 | (void)argc;
|
||
604 | |||
605 | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_SHUTDOWN); |
||
606 | chThdTerminate(chThdGetSelfX()); |
||
607 | return AOS_OK;
|
||
608 | #endif /* AMIROOS_CFG_SSSP_ENABLE */ |
||
609 | e545e620 | Thomas Schöpping | } |
610 | |||
611 | #if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
||
612 | /**
|
||
613 | * @brief Callback function for the kernel:test shell command.
|
||
614 | *
|
||
615 | * @param[in] stream The I/O stream to use.
|
||
616 | * @param[in] argc Number of arguments.
|
||
617 | * @param[in] argv List of pointers to the arguments.
|
||
618 | *
|
||
619 | * @return An exit status.
|
||
620 | */
|
||
621 | static int _shellcmd_kerneltestcb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
622 | { |
||
623 | ba516b61 | Thomas Schöpping | aosDbgCheck(stream != NULL);
|
624 | |||
625 | e545e620 | Thomas Schöpping | (void)argc;
|
626 | (void)argv;
|
||
627 | |||
628 | 0128be0f | Marc Rothmann | msg_t retval = test_execute(stream, &rt_test_suite); |
629 | e545e620 | Thomas Schöpping | |
630 | return retval;
|
||
631 | } |
||
632 | #endif /* AMIROOS_CFG_TESTS_ENABLE == true */ |
||
633 | aed3754b | Thomas Schöpping | #endif /* AMIROOS_CFG_SHELL_ENABLE == true */ |
634 | e545e620 | Thomas Schöpping | |
635 | 6d5d8856 | Thomas Schöpping | // suppress warning in case no interrupt GPIOs are defined
|
636 | #pragma GCC diagnostic push
|
||
637 | #pragma GCC diagnostic ignored "-Wunused-function" |
||
638 | e545e620 | Thomas Schöpping | /**
|
639 | 1e5f7648 | Thomas Schöpping | * @brief Generic callback function for GPIO interrupts.
|
640 | e545e620 | Thomas Schöpping | *
|
641 | 1e5f7648 | Thomas Schöpping | * @param[in] args Pointer to the GPIO pad identifier.
|
642 | e545e620 | Thomas Schöpping | */
|
643 | 1e5f7648 | Thomas Schöpping | static void _intCallback(void* args) |
644 | e545e620 | Thomas Schöpping | { |
645 | 1e5f7648 | Thomas Schöpping | aosDbgCheck((args != NULL) && (*((iopadid_t*)args) < sizeof(eventflags_t) * 8)); |
646 | e545e620 | Thomas Schöpping | |
647 | chSysLockFromISR(); |
||
648 | 1e5f7648 | Thomas Schöpping | chEvtBroadcastFlagsI(&aos.events.io, (eventflags_t)1 << *((iopadid_t*)args));
|
649 | e545e620 | Thomas Schöpping | chSysUnlockFromISR(); |
650 | |||
651 | return;
|
||
652 | } |
||
653 | 6d5d8856 | Thomas Schöpping | #pragma GCC diagnostic pop
|
654 | e545e620 | Thomas Schöpping | |
655 | 9ebb11a9 | Thomas Schöpping | #if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true)) || defined(__DOXYGEN__) |
656 | e545e620 | Thomas Schöpping | /**
|
657 | * @brief Callback function for the Sync signal interrupt.
|
||
658 | *
|
||
659 | 1e5f7648 | Thomas Schöpping | * @param[in] args Pointer to the GPIO pad identifier.
|
660 | e545e620 | Thomas Schöpping | */
|
661 | 0128be0f | Marc Rothmann | static void _signalSyncCallback(void *args) |
662 | e545e620 | Thomas Schöpping | { |
663 | 1e5f7648 | Thomas Schöpping | aosDbgCheck((args != NULL) && (*((iopadid_t*)args) < sizeof(eventflags_t) * 8)); |
664 | e545e620 | Thomas Schöpping | |
665 | apalControlGpioState_t s_state; |
||
666 | aos_timestamp_t uptime; |
||
667 | |||
668 | chSysLockFromISR(); |
||
669 | 9461fadc | Thomas Schöpping | // if the system is in operation phase
|
670 | if (aos.sssp.stage == AOS_SSSP_OPERATION) {
|
||
671 | // read signal S
|
||
672 | apalControlGpioGet(&moduleSsspGpioSync, &s_state); |
||
673 | // if S was toggled from on to off
|
||
674 | if (s_state == APAL_GPIO_OFF) {
|
||
675 | // get current uptime
|
||
676 | aosSysGetUptimeX(&uptime); |
||
677 | // align the uptime with the synchronization period
|
||
678 | if (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD < AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2) { |
||
679 | _uptime -= uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD; |
||
680 | 3e1a9c79 | Thomas Schöpping | #if (AMIROOS_CFG_PROFILE == true) |
681 | _syssyncskew = ((1.0f - SYSTEM_SYSSYNCSKEW_LPFACTOR) * _syssyncskew) + (SYSTEM_SYSSYNCSKEW_LPFACTOR * (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD)); |
||
682 | #endif
|
||
683 | 9461fadc | Thomas Schöpping | } else {
|
684 | _uptime += AMIROOS_CFG_SSSP_SYSSYNCPERIOD - (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD); |
||
685 | 3e1a9c79 | Thomas Schöpping | #if (AMIROOS_CFG_PROFILE == true) |
686 | _syssyncskew = ((1.0f - SYSTEM_SYSSYNCSKEW_LPFACTOR) * _syssyncskew) - (SYSTEM_SYSSYNCSKEW_LPFACTOR * (AMIROOS_CFG_SSSP_SYSSYNCPERIOD - (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD))); |
||
687 | #endif
|
||
688 | 9461fadc | Thomas Schöpping | } |
689 | e545e620 | Thomas Schöpping | } |
690 | } |
||
691 | // broadcast event
|
||
692 | 1e5f7648 | Thomas Schöpping | chEvtBroadcastFlagsI(&aos.events.io, (eventflags_t)1 << *((iopadid_t*)args));
|
693 | e545e620 | Thomas Schöpping | chSysUnlockFromISR(); |
694 | |||
695 | return;
|
||
696 | } |
||
697 | 9ebb11a9 | Thomas Schöpping | #endif /* (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) */ |
698 | e545e620 | Thomas Schöpping | |
699 | /**
|
||
700 | * @brief Callback function for the uptime accumulation timer.
|
||
701 | *
|
||
702 | * @param[in] par Generic parameter.
|
||
703 | */
|
||
704 | static void _uptimeCallback(void* par) |
||
705 | { |
||
706 | (void)par;
|
||
707 | |||
708 | chSysLockFromISR(); |
||
709 | // read current time in system ticks
|
||
710 | register const systime_t st = chVTGetSystemTimeX(); |
||
711 | // update the uptime variables
|
||
712 | 1e5f7648 | Thomas Schöpping | _uptime += chTimeI2US(chTimeDiffX(_synctime, st)); |
713 | e545e620 | Thomas Schöpping | _synctime = st; |
714 | // enable the timer again
|
||
715 | chVTSetI(&_systimer, SYSTIMER_PERIOD, &_uptimeCallback, NULL);
|
||
716 | chSysUnlockFromISR(); |
||
717 | |||
718 | return;
|
||
719 | } |
||
720 | |||
721 | 9ebb11a9 | Thomas Schöpping | #if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER == true)) || defined (__DOXYGEN__) |
722 | e545e620 | Thomas Schöpping | /**
|
723 | * @brief Periodic system synchronization callback function.
|
||
724 | * @details Toggles the SYS_SYNC signal and reconfigures the system synchronization timer.
|
||
725 | *
|
||
726 | * @param[in] par Unuesed parameters.
|
||
727 | */
|
||
728 | static void _sysSyncTimerCallback(void* par) |
||
729 | { |
||
730 | (void)par;
|
||
731 | |||
732 | apalControlGpioState_t s_state; |
||
733 | aos_timestamp_t uptime; |
||
734 | |||
735 | chSysLockFromISR(); |
||
736 | 9461fadc | Thomas Schöpping | // toggle and read signal S
|
737 | apalGpioToggle(moduleSsspGpioSync.gpio); |
||
738 | 6b53f6bf | Thomas Schöpping | apalControlGpioGet(&moduleSsspGpioSync, &s_state); |
739 | e545e620 | Thomas Schöpping | // if S was toggled from off to on
|
740 | if (s_state == APAL_GPIO_ON) {
|
||
741 | // reconfigure the timer precisely, because the logically falling edge (next interrupt) snychronizes the system time
|
||
742 | _syssynctime += AMIROOS_CFG_SSSP_SYSSYNCPERIOD; |
||
743 | aosSysGetUptimeX(&uptime); |
||
744 | 1e5f7648 | Thomas Schöpping | chVTSetI(&_syssynctimer, chTimeUS2I(_syssynctime - uptime), _sysSyncTimerCallback, NULL);
|
745 | e545e620 | Thomas Schöpping | } |
746 | // if S was toggled from on to off
|
||
747 | else /* if (s_state == APAL_GPIO_OFF) */ { |
||
748 | // reconfigure the timer (lazy)
|
||
749 | 1e5f7648 | Thomas Schöpping | chVTSetI(&_syssynctimer, chTimeUS2I(AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2), _sysSyncTimerCallback, NULL); |
750 | e545e620 | Thomas Schöpping | } |
751 | chSysUnlockFromISR(); |
||
752 | |||
753 | return;
|
||
754 | } |
||
755 | 9ebb11a9 | Thomas Schöpping | #endif /* (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER == true) */ |
756 | e545e620 | Thomas Schöpping | |
757 | /**
|
||
758 | * @brief AMiRo-OS system initialization.
|
||
759 | * @note Must be called from the system control thread (usually main thread).
|
||
760 | *
|
||
761 | * @param[in] shellPrompt String to be printed as prompt of the system shell.
|
||
762 | */
|
||
763 | 6b53f6bf | Thomas Schöpping | #if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__) |
764 | void aosSysInit(const char* shellPrompt) |
||
765 | #else
|
||
766 | void aosSysInit(void) |
||
767 | #endif
|
||
768 | e545e620 | Thomas Schöpping | { |
769 | 1e5f7648 | Thomas Schöpping | /* set control thread to maximum priority */
|
770 | 512abac1 | Thomas Schöpping | chThdSetPriority(AOS_THD_CTRLPRIO); |
771 | e545e620 | Thomas Schöpping | |
772 | 1e5f7648 | Thomas Schöpping | /* set local variables */
|
773 | e545e620 | Thomas Schöpping | chVTObjectInit(&_systimer); |
774 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
775 | e545e620 | Thomas Schöpping | _synctime = 0;
|
776 | _uptime = 0;
|
||
777 | #if (AMIROOS_CFG_SSSP_MASTER == true) |
||
778 | chVTObjectInit(&_syssynctimer); |
||
779 | _syssynctime = 0;
|
||
780 | #endif
|
||
781 | 3e1a9c79 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true) |
782 | _syssyncskew = 0.0f; |
||
783 | #endif
|
||
784 | 9ebb11a9 | Thomas Schöpping | #else /* AMIROOS_CFG_SSSP_ENABLE == false */ |
785 | // start the uptime counter
|
||
786 | chSysLock(); |
||
787 | _synctime = chVTGetSystemTimeX(); |
||
788 | _uptime = 0;
|
||
789 | chVTSetI(&_systimer, SYSTIMER_PERIOD, &_uptimeCallback, NULL);
|
||
790 | chSysUnlock(); |
||
791 | #endif /* AMIROOS_CFG_SSSP_ENABLE */ |
||
792 | e545e620 | Thomas Schöpping | |
793 | 1e5f7648 | Thomas Schöpping | /* initialize aos configuration */
|
794 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
795 | 6b53f6bf | Thomas Schöpping | aos.sssp.stage = AOS_SSSP_STARTUP_2_1; |
796 | aos.sssp.moduleId = 0;
|
||
797 | 9ebb11a9 | Thomas Schöpping | #endif
|
798 | ba516b61 | Thomas Schöpping | aosIOStreamInit(&aos.iostream); |
799 | 6b53f6bf | Thomas Schöpping | chEvtObjectInit(&aos.events.io); |
800 | chEvtObjectInit(&aos.events.os); |
||
801 | e545e620 | Thomas Schöpping | |
802 | 1e5f7648 | Thomas Schöpping | /* interrupt setup */
|
803 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
804 | 1e5f7648 | Thomas Schöpping | // PD signal
|
805 | palSetPadCallback(moduleSsspGpioPd.gpio->port, moduleSsspGpioPd.gpio->pad, _intCallback, &moduleSsspGpioPd.gpio->pad); |
||
806 | palEnablePadEvent(moduleSsspGpioPd.gpio->port, moduleSsspGpioPd.gpio->pad, APAL2CH_EDGE(moduleSsspGpioPd.meta.edge)); |
||
807 | // SYNC signal
|
||
808 | #if (AMIROOS_CFG_SSSP_MASTER == true) |
||
809 | palSetPadCallback(moduleSsspGpioSync.gpio->port, moduleSsspGpioSync.gpio->pad, _intCallback, &moduleSsspGpioSync.gpio->pad); |
||
810 | #else
|
||
811 | palSetPadCallback(moduleSsspGpioSync.gpio->port, moduleSsspGpioSync.gpio->pad, _signalSyncCallback, &moduleSsspGpioSync.gpio->pad); |
||
812 | #endif
|
||
813 | palEnablePadEvent(moduleSsspGpioSync.gpio->port, moduleSsspGpioSync.gpio->pad, APAL2CH_EDGE(moduleSsspGpioSync.meta.edge)); |
||
814 | #if (AMIROOS_CFG_SSSP_STACK_START != true) |
||
815 | // DN signal
|
||
816 | palSetPadCallback(moduleSsspGpioDn.gpio->port, moduleSsspGpioDn.gpio->pad, _intCallback, &moduleSsspGpioDn.gpio->pad); |
||
817 | palEnablePadEvent(moduleSsspGpioDn.gpio->port, moduleSsspGpioDn.gpio->pad, APAL2CH_EDGE(moduleSsspGpioDn.meta.edge)); |
||
818 | #endif
|
||
819 | #if (AMIROOS_CFG_SSSP_STACK_END != true) |
||
820 | // UP signal
|
||
821 | palSetPadCallback(moduleSsspGpioUp.gpio->port, moduleSsspGpioUp.gpio->pad, _intCallback, &moduleSsspGpioUp.gpio->pad); |
||
822 | palEnablePadEvent(moduleSsspGpioUp.gpio->port, moduleSsspGpioUp.gpio->pad, APAL2CH_EDGE(moduleSsspGpioUp.meta.edge)); |
||
823 | #endif
|
||
824 | 9ebb11a9 | Thomas Schöpping | #endif /* AMIROOS_CFG_SSSP_ENABLE == true */ |
825 | 1e5f7648 | Thomas Schöpping | #ifdef MODULE_INIT_INTERRUPTS
|
826 | // further interrupt signals
|
||
827 | MODULE_INIT_INTERRUPTS(); |
||
828 | #endif
|
||
829 | e545e620 | Thomas Schöpping | |
830 | #if (AMIROOS_CFG_SHELL_ENABLE == true) |
||
831 | 1e5f7648 | Thomas Schöpping | /* init shell */
|
832 | 6b53f6bf | Thomas Schöpping | aosShellInit(&aos.shell, |
833 | &aos.events.os, |
||
834 | e545e620 | Thomas Schöpping | shellPrompt, |
835 | _shell_line, |
||
836 | AMIROOS_CFG_SHELL_LINEWIDTH, |
||
837 | _shell_arglist, |
||
838 | AMIROOS_CFG_SHELL_MAXARGS); |
||
839 | // add system commands
|
||
840 | 6b53f6bf | Thomas Schöpping | aosShellAddCommand(&aos.shell, &_shellcmd_config); |
841 | aosShellAddCommand(&aos.shell, &_shellcmd_info); |
||
842 | aosShellAddCommand(&aos.shell, &_shellcmd_shutdown); |
||
843 | e545e620 | Thomas Schöpping | #if (AMIROOS_CFG_TESTS_ENABLE == true) |
844 | 6b53f6bf | Thomas Schöpping | aosShellAddCommand(&aos.shell, &_shellcmd_kerneltest); |
845 | e545e620 | Thomas Schöpping | #endif
|
846 | 9ebb11a9 | Thomas Schöpping | #endif /* AMIROOS_CFG_SHELL_ENABLE == true */ |
847 | e545e620 | Thomas Schöpping | |
848 | return;
|
||
849 | } |
||
850 | |||
851 | /**
|
||
852 | * @brief Starts the system and all system threads.
|
||
853 | */
|
||
854 | inline void aosSysStart(void) |
||
855 | { |
||
856 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
857 | e545e620 | Thomas Schöpping | // update the system SSSP stage
|
858 | 6b53f6bf | Thomas Schöpping | aos.sssp.stage = AOS_SSSP_OPERATION; |
859 | e545e620 | Thomas Schöpping | |
860 | 9461fadc | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_MASTER == true) |
861 | { |
||
862 | chSysLock(); |
||
863 | // start the system synchronization counter
|
||
864 | // The first iteration of the timer is set to the next 'center' of a 'slice'.
|
||
865 | aos_timestamp_t t; |
||
866 | aosSysGetUptimeX(&t); |
||
867 | t = AMIROOS_CFG_SSSP_SYSSYNCPERIOD - (t % AMIROOS_CFG_SSSP_SYSSYNCPERIOD); |
||
868 | 1e5f7648 | Thomas Schöpping | chVTSetI(&_syssynctimer, chTimeUS2I((t > (AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2)) ? (t - (AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2)) : (t + (AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2))), _sysSyncTimerCallback, NULL); |
869 | 9461fadc | Thomas Schöpping | chSysUnlock(); |
870 | } |
||
871 | #endif
|
||
872 | 9ebb11a9 | Thomas Schöpping | #endif /* AMIROOS_CFG_SSSP_ENABLE == true */ |
873 | 9461fadc | Thomas Schöpping | |
874 | ba516b61 | Thomas Schöpping | // print system information;
|
875 | _printSystemInfo((BaseSequentialStream*)&aos.iostream); |
||
876 | e545e620 | Thomas Schöpping | aosprintf("\n");
|
877 | |||
878 | #if (AMIROOS_CFG_SHELL_ENABLE == true) |
||
879 | // start system shell thread
|
||
880 | 0a89baf2 | Thomas Schöpping | #if (CH_CFG_USE_THREADHIERARCHY == TRUE)
|
881 | aos.shell.thread = chThdCreateStatic(_shell_wa, sizeof(_shell_wa), AMIROOS_CFG_SHELL_THREADPRIO, aosShellThread, &aos.shell, &ch.mainthread);
|
||
882 | #else
|
||
883 | 6b53f6bf | Thomas Schöpping | aos.shell.thread = chThdCreateStatic(_shell_wa, sizeof(_shell_wa), AMIROOS_CFG_SHELL_THREADPRIO, aosShellThread, &aos.shell);
|
884 | e545e620 | Thomas Schöpping | #endif
|
885 | 0a89baf2 | Thomas Schöpping | #endif
|
886 | e545e620 | Thomas Schöpping | |
887 | return;
|
||
888 | } |
||
889 | |||
890 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) || defined(__DOXYGEN__) |
891 | e545e620 | Thomas Schöpping | /**
|
892 | * @brief Implements the SSSP startup synchronization step.
|
||
893 | *
|
||
894 | * @param[in] syncEvtListener Event listener that receives the Sync event.
|
||
895 | *
|
||
896 | * @return If another event that the listener is interested in was received, its mask is returned.
|
||
897 | * Otherwise an empty mask (0) is returned.
|
||
898 | */
|
||
899 | eventmask_t aosSysSsspStartupOsInitSyncCheck(event_listener_t* syncEvtListener) |
||
900 | { |
||
901 | aosDbgCheck(syncEvtListener != NULL);
|
||
902 | |||
903 | // local variables
|
||
904 | eventmask_t m; |
||
905 | eventflags_t f; |
||
906 | apalControlGpioState_t s; |
||
907 | |||
908 | // update the system SSSP stage
|
||
909 | 6b53f6bf | Thomas Schöpping | aos.sssp.stage = AOS_SSSP_STARTUP_2_2; |
910 | e545e620 | Thomas Schöpping | |
911 | // deactivate the sync signal to indicate that the module is ready (SSSPv1 stage 2.1 of startup phase)
|
||
912 | 6b53f6bf | Thomas Schöpping | apalControlGpioSet(&moduleSsspGpioSync, APAL_GPIO_OFF); |
913 | e545e620 | Thomas Schöpping | |
914 | // wait for any event to occur (do not apply any filter in order not to miss any event)
|
||
915 | m = chEvtWaitOne(ALL_EVENTS); |
||
916 | f = chEvtGetAndClearFlags(syncEvtListener); |
||
917 | 6b53f6bf | Thomas Schöpping | apalControlGpioGet(&moduleSsspGpioSync, &s); |
918 | e545e620 | Thomas Schöpping | |
919 | // if the event was a system event,
|
||
920 | // and it was fired because of the SysSync control signal,
|
||
921 | // and the SysSync control signal has been deactivated
|
||
922 | if (m & syncEvtListener->events &&
|
||
923 | 6b53f6bf | Thomas Schöpping | f == MODULE_SSSP_EVENTFLAGS_SYNC && |
924 | e545e620 | Thomas Schöpping | s == APAL_GPIO_OFF) { |
925 | chSysLock(); |
||
926 | // start the uptime counter
|
||
927 | _synctime = chVTGetSystemTimeX(); |
||
928 | _uptime = 0;
|
||
929 | chVTSetI(&_systimer, SYSTIMER_PERIOD, &_uptimeCallback, NULL);
|
||
930 | chSysUnlock(); |
||
931 | |||
932 | return 0; |
||
933 | } |
||
934 | // an unexpected event occurred
|
||
935 | else {
|
||
936 | // reassign the flags to the event and return the event mask
|
||
937 | syncEvtListener->flags |= f; |
||
938 | return m;
|
||
939 | } |
||
940 | } |
||
941 | 9ebb11a9 | Thomas Schöpping | #endif /* AMIROOS_CFG_SSSP_ENABLE == true */ |
942 | e545e620 | Thomas Schöpping | |
943 | /**
|
||
944 | * @brief Retrieves the system uptime.
|
||
945 | *
|
||
946 | * @param[out] ut The system uptime.
|
||
947 | */
|
||
948 | inline void aosSysGetUptimeX(aos_timestamp_t* ut) |
||
949 | { |
||
950 | aosDbgCheck(ut != NULL);
|
||
951 | |||
952 | 1e5f7648 | Thomas Schöpping | *ut = _uptime + chTimeI2US(chTimeDiffX(_synctime, chVTGetSystemTimeX())); |
953 | e545e620 | Thomas Schöpping | |
954 | return;
|
||
955 | } |
||
956 | |||
957 | /**
|
||
958 | 8399aeae | Thomas Schöpping | * @brief retrieves the date and time from the MCU clock.
|
959 | *
|
||
960 | * @param[out] td The date and time.
|
||
961 | */
|
||
962 | void aosSysGetDateTime(struct tm* dt) |
||
963 | { |
||
964 | aosDbgCheck(dt != NULL);
|
||
965 | |||
966 | RTCDateTime rtc; |
||
967 | rtcGetTime(&MODULE_HAL_RTC, &rtc); |
||
968 | rtcConvertDateTimeToStructTm(&rtc, dt, NULL);
|
||
969 | |||
970 | return;
|
||
971 | } |
||
972 | |||
973 | /**
|
||
974 | * @brief set the date and time of the MCU clock.
|
||
975 | *
|
||
976 | * @param[in] dt The date and time to set.
|
||
977 | */
|
||
978 | void aosSysSetDateTime(struct tm* dt) |
||
979 | { |
||
980 | aosDbgCheck(dt != NULL);
|
||
981 | |||
982 | RTCDateTime rtc; |
||
983 | rtcConvertStructTmToDateTime(dt, 0, &rtc);
|
||
984 | rtcSetTime(&MODULE_HAL_RTC, &rtc); |
||
985 | |||
986 | return;
|
||
987 | } |
||
988 | |||
989 | /**
|
||
990 | e545e620 | Thomas Schöpping | * @brief Initializes/Acknowledges a system shutdown/restart request.
|
991 | * @note This functions should be called from the thread with highest priority.
|
||
992 | *
|
||
993 | * @param[in] shutdown Type of shutdown.
|
||
994 | */
|
||
995 | void aosSysShutdownInit(aos_shutdown_t shutdown)
|
||
996 | { |
||
997 | // check arguments
|
||
998 | aosDbgCheck(shutdown != AOS_SHUTDOWN_NONE); |
||
999 | |||
1000 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
1001 | e545e620 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_MASTER == true) |
1002 | // deactivate the system synchronization timer
|
||
1003 | chVTReset(&_syssynctimer); |
||
1004 | #endif
|
||
1005 | |||
1006 | // update the system SSSP stage
|
||
1007 | 6b53f6bf | Thomas Schöpping | aos.sssp.stage = AOS_SSSP_SHUTDOWN_1_1; |
1008 | e545e620 | Thomas Schöpping | |
1009 | chSysLock(); |
||
1010 | 1d3e002f | Thomas Schöpping | // activate the SYS_PD control signal only, if this module initiated the shutdown
|
1011 | e545e620 | Thomas Schöpping | if (shutdown != AOS_SHUTDOWN_PASSIVE) {
|
1012 | 6b53f6bf | Thomas Schöpping | apalControlGpioSet(&moduleSsspGpioPd, APAL_GPIO_ON); |
1013 | e545e620 | Thomas Schöpping | } |
1014 | // activate the SYS_SYNC signal
|
||
1015 | 6b53f6bf | Thomas Schöpping | apalControlGpioSet(&moduleSsspGpioSync, APAL_GPIO_ON); |
1016 | e545e620 | Thomas Schöpping | chSysUnlock(); |
1017 | 9ebb11a9 | Thomas Schöpping | #endif /* AMIROOS_CFG_SSSP_ENABLE == true */ |
1018 | e545e620 | Thomas Schöpping | |
1019 | switch (shutdown) {
|
||
1020 | case AOS_SHUTDOWN_PASSIVE:
|
||
1021 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_SHUTDOWN); |
1022 | e545e620 | Thomas Schöpping | aosprintf("shutdown request received...\n");
|
1023 | break;
|
||
1024 | case AOS_SHUTDOWN_HIBERNATE:
|
||
1025 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_HIBERNATE); |
1026 | e545e620 | Thomas Schöpping | aosprintf("shutdown to hibernate mode...\n");
|
1027 | break;
|
||
1028 | case AOS_SHUTDOWN_DEEPSLEEP:
|
||
1029 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_DEEPSLEEP); |
1030 | e545e620 | Thomas Schöpping | aosprintf("shutdown to deepsleep mode...\n");
|
1031 | break;
|
||
1032 | case AOS_SHUTDOWN_TRANSPORTATION:
|
||
1033 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_TRANSPORTATION); |
1034 | e545e620 | Thomas Schöpping | aosprintf("shutdown to transportation mode...\n");
|
1035 | break;
|
||
1036 | case AOS_SHUTDOWN_RESTART:
|
||
1037 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_RESTART); |
1038 | e545e620 | Thomas Schöpping | aosprintf("restarting system...\n");
|
1039 | break;
|
||
1040 | 1d3e002f | Thomas Schöpping | // must never occur
|
1041 | case AOS_SHUTDOWN_NONE:
|
||
1042 | default:
|
||
1043 | e545e620 | Thomas Schöpping | break;
|
1044 | } |
||
1045 | |||
1046 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
1047 | e545e620 | Thomas Schöpping | // update the system SSSP stage
|
1048 | 6b53f6bf | Thomas Schöpping | aos.sssp.stage = AOS_SSSP_SHUTDOWN_1_2; |
1049 | 9ebb11a9 | Thomas Schöpping | #endif
|
1050 | e545e620 | Thomas Schöpping | |
1051 | return;
|
||
1052 | } |
||
1053 | |||
1054 | /**
|
||
1055 | * @brief Stops the system and all related threads (not the thread this function is called from).
|
||
1056 | */
|
||
1057 | void aosSysStop(void) |
||
1058 | { |
||
1059 | #if (AMIROOS_CFG_SHELL_ENABLE == true) |
||
1060 | 6b53f6bf | Thomas Schöpping | chThdWait(aos.shell.thread); |
1061 | e545e620 | Thomas Schöpping | #endif
|
1062 | |||
1063 | return;
|
||
1064 | } |
||
1065 | |||
1066 | /**
|
||
1067 | * @brief Deinitialize all system variables.
|
||
1068 | */
|
||
1069 | void aosSysDeinit(void) |
||
1070 | { |
||
1071 | return;
|
||
1072 | } |
||
1073 | |||
1074 | /**
|
||
1075 | * @brief Finally shuts down the system and calls the bootloader callback function.
|
||
1076 | * @note This function should be called from the thtead with highest priority.
|
||
1077 | *
|
||
1078 | * @param[in] shutdown Type of shutdown.
|
||
1079 | */
|
||
1080 | 1e5f7648 | Thomas Schöpping | void aosSysShutdownFinal(aos_shutdown_t shutdown)
|
1081 | e545e620 | Thomas Schöpping | { |
1082 | // check arguments
|
||
1083 | aosDbgCheck(shutdown != AOS_SHUTDOWN_NONE); |
||
1084 | |||
1085 | 1e5f7648 | Thomas Schöpping | // disable all interrupts
|
1086 | irqDeinit(); |
||
1087 | e545e620 | Thomas Schöpping | |
1088 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
1089 | e545e620 | Thomas Schöpping | // update the system SSSP stage
|
1090 | 6b53f6bf | Thomas Schöpping | aos.sssp.stage = AOS_SSSP_SHUTDOWN_1_3; |
1091 | 9ebb11a9 | Thomas Schöpping | #endif
|
1092 | e545e620 | Thomas Schöpping | |
1093 | 41fc7088 | Thomas Schöpping | // validate bootloader
|
1094 | if ((BL_CALLBACK_TABLE_ADDRESS->magicNumber == BL_MAGIC_NUMBER) &&
|
||
1095 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.major == BL_VERSION_MAJOR) && |
||
1096 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.minor >= BL_VERSION_MINOR)) { |
||
1097 | // call bootloader callback depending on arguments
|
||
1098 | switch (shutdown) {
|
||
1099 | case AOS_SHUTDOWN_PASSIVE:
|
||
1100 | BL_CALLBACK_TABLE_ADDRESS->cbHandleShutdownRequest(); |
||
1101 | break;
|
||
1102 | case AOS_SHUTDOWN_HIBERNATE:
|
||
1103 | BL_CALLBACK_TABLE_ADDRESS->cbShutdownHibernate(); |
||
1104 | break;
|
||
1105 | case AOS_SHUTDOWN_DEEPSLEEP:
|
||
1106 | BL_CALLBACK_TABLE_ADDRESS->cbShutdownDeepsleep(); |
||
1107 | break;
|
||
1108 | case AOS_SHUTDOWN_TRANSPORTATION:
|
||
1109 | BL_CALLBACK_TABLE_ADDRESS->cbShutdownTransportation(); |
||
1110 | break;
|
||
1111 | case AOS_SHUTDOWN_RESTART:
|
||
1112 | BL_CALLBACK_TABLE_ADDRESS->cbShutdownRestart(); |
||
1113 | break;
|
||
1114 | // must never occur
|
||
1115 | case AOS_SHUTDOWN_NONE:
|
||
1116 | default:
|
||
1117 | break;
|
||
1118 | } |
||
1119 | } else {
|
||
1120 | // fallback if bootloader was found to be invalid
|
||
1121 | aosprintf("Bootloader incompatible or not available!\n");
|
||
1122 | chThdSleep(TIME_INFINITE); |
||
1123 | e545e620 | Thomas Schöpping | } |
1124 | |||
1125 | return;
|
||
1126 | } |
||
1127 | 53710ca3 | Marc Rothmann | |
1128 | /** @} */ |