amiro-os / core / src / aos_system.c @ 2c89d7e2
History | View | Annotate | Download (38.971 KB)
| 1 | e545e620 | Thomas Schöpping | /*
|
|---|---|---|---|
| 2 | AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
|
||
| 3 | Copyright (C) 2016..2018 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 | 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 | /* name */ "system:shutdown", |
||
| 145 | /* callback */ _shellcmd_shutdowncb,
|
||
| 146 | /* next */ NULL, |
||
| 147 | }; |
||
| 148 | #endif /* AMIROOS_CFG_SHELL_ENABLE == true */ |
||
| 149 | |||
| 150 | #if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
||
| 151 | /**
|
||
| 152 | * @brief Shell kommand to run a test of the ChibiOS/RT kernel.
|
||
| 153 | */
|
||
| 154 | static aos_shellcommand_t _shellcmd_kerneltest = {
|
||
| 155 | /* name */ "kernel:test", |
||
| 156 | /* callback */ _shellcmd_kerneltestcb,
|
||
| 157 | /* next */ NULL, |
||
| 158 | }; |
||
| 159 | #endif /* AMIROOS_CFG_TESTS_ENABLE == true */ |
||
| 160 | |||
| 161 | /**
|
||
| 162 | * @brief Global system object.
|
||
| 163 | */
|
||
| 164 | 6b53f6bf | Thomas Schöpping | aos_system_t aos; |
| 165 | e545e620 | Thomas Schöpping | |
| 166 | /**
|
||
| 167 | * @brief Print a separator line.
|
||
| 168 | *
|
||
| 169 | ba516b61 | Thomas Schöpping | * @param[in] stream Stream to print to or NULL to print to all system streams.
|
| 170 | e545e620 | Thomas Schöpping | * @param[in] c Character to use.
|
| 171 | * @param[in] n Length of the separator line.
|
||
| 172 | *
|
||
| 173 | * @return Number of characters printed.
|
||
| 174 | */
|
||
| 175 | static unsigned int _printSystemInfoSeparator(BaseSequentialStream* stream, const char c, const unsigned int n) |
||
| 176 | {
|
||
| 177 | aosDbgCheck(stream != NULL);
|
||
| 178 | |||
| 179 | // print the specified character n times
|
||
| 180 | for (unsigned int i = 0; i < n; ++i) { |
||
| 181 | streamPut(stream, c); |
||
| 182 | } |
||
| 183 | streamPut(stream, '\n');
|
||
| 184 | |||
| 185 | return n+1; |
||
| 186 | } |
||
| 187 | |||
| 188 | /**
|
||
| 189 | * @brief Print a system information line.
|
||
| 190 | * @details Prints a system information line with the following format:
|
||
| 191 | * "<name>[spaces]fmt"
|
||
| 192 | * The combined width of "<name>[spaces]" can be specified in order to align <fmt> on multiple lines.
|
||
| 193 | * Note that there is not trailing newline added implicitely.
|
||
| 194 | *
|
||
| 195 | ba516b61 | Thomas Schöpping | * @param[in] stream Stream to print to or NULL to print to all system streams.
|
| 196 | e545e620 | Thomas Schöpping | * @param[in] name Name of the entry/line.
|
| 197 | * @param[in] namewidth Width of the name column.
|
||
| 198 | * @param[in] fmt Formatted string of information content.
|
||
| 199 | *
|
||
| 200 | * @return Number of characters printed.
|
||
| 201 | */
|
||
| 202 | static unsigned int _printSystemInfoLine(BaseSequentialStream* stream, const char* name, const unsigned int namewidth, const char* fmt, ...) |
||
| 203 | {
|
||
| 204 | aosDbgCheck(stream != NULL);
|
||
| 205 | ba516b61 | Thomas Schöpping | aosDbgCheck(name != NULL);
|
| 206 | e545e620 | Thomas Schöpping | |
| 207 | unsigned int n = 0; |
||
| 208 | ba516b61 | Thomas Schöpping | va_list ap; |
| 209 | e545e620 | Thomas Schöpping | |
| 210 | ba516b61 | Thomas Schöpping | va_start(ap, fmt); |
| 211 | e545e620 | Thomas Schöpping | n += chprintf(stream, name); |
| 212 | while (n < namewidth) {
|
||
| 213 | streamPut(stream, ' ');
|
||
| 214 | ++n; |
||
| 215 | } |
||
| 216 | n += chvprintf(stream, fmt, ap); |
||
| 217 | va_end(ap); |
||
| 218 | |||
| 219 | 933df08e | Thomas Schöpping | streamPut(stream, '\n');
|
| 220 | ++n; |
||
| 221 | |||
| 222 | e545e620 | Thomas Schöpping | return n;
|
| 223 | } |
||
| 224 | |||
| 225 | /**
|
||
| 226 | * @brief Prints information about the system.
|
||
| 227 | *
|
||
| 228 | * @param[in] stream Stream to print to.
|
||
| 229 | */
|
||
| 230 | ba516b61 | Thomas Schöpping | static void _printSystemInfo(BaseSequentialStream* stream) |
| 231 | e545e620 | Thomas Schöpping | {
|
| 232 | aosDbgCheck(stream != NULL);
|
||
| 233 | |||
| 234 | 933df08e | Thomas Schöpping | // local variables
|
| 235 | struct tm dt;
|
||
| 236 | aosSysGetDateTime(&dt); |
||
| 237 | |||
| 238 | // print static information about module and operating system
|
||
| 239 | e545e620 | Thomas Schöpping | _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
|
| 240 | 1816cbc6 | Thomas Schöpping | #ifdef BOARD_VERSION
|
| 241 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Module", SYSTEM_INFO_NAMEWIDTH, "%s (v%s)", BOARD_NAME, BOARD_VERSION); |
| 242 | 1816cbc6 | Thomas Schöpping | #else
|
| 243 | _printSystemInfoLine(stream, "Module", SYSTEM_INFO_NAMEWIDTH, "%s", BOARD_NAME); |
||
| 244 | #endif
|
||
| 245 | e545e620 | Thomas Schöpping | #ifdef PLATFORM_NAME
|
| 246 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Platform", SYSTEM_INFO_NAMEWIDTH, "%s", PLATFORM_NAME); |
| 247 | e545e620 | Thomas Schöpping | #endif
|
| 248 | #ifdef PORT_CORE_VARIANT_NAME
|
||
| 249 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Core Variant", SYSTEM_INFO_NAMEWIDTH, "%s", PORT_CORE_VARIANT_NAME); |
| 250 | e545e620 | Thomas Schöpping | #endif
|
| 251 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Architecture", SYSTEM_INFO_NAMEWIDTH, "%s", PORT_ARCHITECTURE_NAME); |
| 252 | e545e620 | Thomas Schöpping | _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
|
| 253 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
| 254 | 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); |
| 255 | 9ebb11a9 | Thomas Schöpping | #else
|
| 256 | _printSystemInfoLine(stream, "AMiRo-OS" , SYSTEM_INFO_NAMEWIDTH, "%u.%u.%u %s", AMIROOS_VERSION_MAJOR, AMIROOS_VERSION_MINOR, AMIROOS_VERSION_PATCH, AMIROOS_RELEASE_TYPE); |
||
| 257 | #endif
|
||
| 258 | 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); |
| 259 | _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"); |
||
| 260 | _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"); |
||
| 261 | _printSystemInfoLine(stream, "build type", SYSTEM_INFO_NAMEWIDTH,"%s", (AMIROOS_CFG_DBG == true) ? "debug" : "release"); |
||
| 262 | _printSystemInfoLine(stream, "Compiler" , SYSTEM_INFO_NAMEWIDTH, "%s %u.%u.%u", "GCC", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__); // TODO: support other compilers than GCC |
||
| 263 | _printSystemInfoLine(stream, "Compiled" , SYSTEM_INFO_NAMEWIDTH, "%s - %s", __DATE__, __TIME__); |
||
| 264 | |||
| 265 | // print static information about the bootloader
|
||
| 266 | e545e620 | Thomas Schöpping | _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
|
| 267 | if (BL_CALLBACK_TABLE_ADDRESS->magicNumber == BL_MAGIC_NUMBER) {
|
||
| 268 | 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, |
| 269 | e545e620 | Thomas Schöpping | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Release) ? "stable" :
|
| 270 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_ReleaseCandidate) ? "release candidate" :
|
||
| 271 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Beta) ? "beta" :
|
||
| 272 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_Alpha) ? "alpha" :
|
||
| 273 | (BL_CALLBACK_TABLE_ADDRESS->vBootloader.identifier == BL_VERSION_ID_AMiRoBLT_PreAlpha) ? "pre-alpha" :
|
||
| 274 | "<release type unknown>",
|
||
| 275 | BL_CALLBACK_TABLE_ADDRESS->vSSSP.major, BL_CALLBACK_TABLE_ADDRESS->vSSSP.minor); |
||
| 276 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
| 277 | 933df08e | Thomas Schöpping | if (BL_CALLBACK_TABLE_ADDRESS->vSSSP.major != AOS_SYSTEM_SSSP_VERSION_MAJOR) {
|
| 278 | ba516b61 | Thomas Schöpping | if (stream) {
|
| 279 | chprintf(stream, "WARNING: Bootloader and AMiRo-OS implement incompatible SSSP versions!\n");
|
||
| 280 | } else {
|
||
| 281 | aosprintf("WARNING: Bootloader and AMiRo-OS implement incompatible SSSP versions!\n");
|
||
| 282 | } |
||
| 283 | } |
||
| 284 | 9ebb11a9 | Thomas Schöpping | #endif
|
| 285 | 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 |
| 286 | e545e620 | Thomas Schöpping | } else {
|
| 287 | ba516b61 | Thomas Schöpping | if (stream) {
|
| 288 | chprintf(stream, "Bootloader incompatible or not available.\n");
|
||
| 289 | } else {
|
||
| 290 | aosprintf("Bootloader incompatible or not available.\n");
|
||
| 291 | } |
||
| 292 | e545e620 | Thomas Schöpping | } |
| 293 | 933df08e | Thomas Schöpping | |
| 294 | // print dynamic information about the module
|
||
| 295 | 8399aeae | Thomas Schöpping | _printSystemInfoSeparator(stream, '-', SYSTEM_INFO_WIDTH);
|
| 296 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) |
| 297 | 933df08e | Thomas Schöpping | if (aos.sssp.moduleId != 0) { |
| 298 | _printSystemInfoLine(stream, "Module ID", SYSTEM_INFO_NAMEWIDTH, "%u", aos.sssp.moduleId); |
||
| 299 | } else {
|
||
| 300 | _printSystemInfoLine(stream, "Module ID", SYSTEM_INFO_NAMEWIDTH, "not available"); |
||
| 301 | } |
||
| 302 | 9ebb11a9 | Thomas Schöpping | #endif
|
| 303 | 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", |
| 304 | 8399aeae | Thomas Schöpping | dt.tm_mday, |
| 305 | dt.tm_mon + 1,
|
||
| 306 | dt.tm_year + 1900);
|
||
| 307 | 933df08e | Thomas Schöpping | _printSystemInfoLine(stream, "Time", SYSTEM_INFO_NAMEWIDTH, "%02u:%02u:%02u", dt.tm_hour, dt.tm_min, dt.tm_sec); |
| 308 | |||
| 309 | e545e620 | Thomas Schöpping | _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
|
| 310 | |||
| 311 | return;
|
||
| 312 | } |
||
| 313 | |||
| 314 | #if (AMIROOS_CFG_SHELL_ENABLE == true) || defined(__DOXYGEN__) |
||
| 315 | /**
|
||
| 316 | * @brief Callback function for the system:config shell command.
|
||
| 317 | *
|
||
| 318 | * @param[in] stream The I/O stream to use.
|
||
| 319 | * @param[in] argc Number of arguments.
|
||
| 320 | * @param[in] argv List of pointers to the arguments.
|
||
| 321 | *
|
||
| 322 | * @return An exit status.
|
||
| 323 | * @retval AOS_OK The command was executed successfuly.
|
||
| 324 | * @retval AOS_INVALID_ARGUMENTS There was an issue with the arguemnts.
|
||
| 325 | */
|
||
| 326 | static int _shellcmd_configcb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
| 327 | {
|
||
| 328 | ba516b61 | Thomas Schöpping | aosDbgCheck(stream != NULL);
|
| 329 | |||
| 330 | e545e620 | Thomas Schöpping | // local variables
|
| 331 | int retval = AOS_INVALID_ARGUMENTS;
|
||
| 332 | |||
| 333 | // if there are additional arguments
|
||
| 334 | if (argc > 1) { |
||
| 335 | // if the user wants to set or retrieve the shell configuration
|
||
| 336 | if (strcmp(argv[1], "--shell") == 0) { |
||
| 337 | // if the user wants to modify the shell configuration
|
||
| 338 | if (argc > 2) { |
||
| 339 | // if the user wants to modify the prompt
|
||
| 340 | if (strcmp(argv[2], "prompt") == 0) { |
||
| 341 | // there must be a further argument
|
||
| 342 | if (argc > 3) { |
||
| 343 | // handle the option
|
||
| 344 | if (strcmp(argv[3], "text") == 0) { |
||
| 345 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_MINIMAL; |
| 346 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
| 347 | } |
||
| 348 | else if (strcmp(argv[3], "minimal") == 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], "notime") == 0) { |
||
| 353 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~(AOS_SHELL_CONFIG_PROMPT_UPTIME | AOS_SHELL_CONFIG_PROMPT_DATETIME); |
| 354 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
| 355 | } |
||
| 356 | else if (strcmp(argv[3], "uptime") == 0) { |
||
| 357 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_DATETIME; |
| 358 | aos.shell.config |= AOS_SHELL_CONFIG_PROMPT_UPTIME; |
||
| 359 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
| 360 | } |
||
| 361 | 8399aeae | Thomas Schöpping | else if (strcmp(argv[3], "date&time") == 0) { |
| 362 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~AOS_SHELL_CONFIG_PROMPT_UPTIME; |
| 363 | aos.shell.config |= AOS_SHELL_CONFIG_PROMPT_DATETIME; |
||
| 364 | 8399aeae | Thomas Schöpping | retval = AOS_OK; |
| 365 | } |
||
| 366 | else {
|
||
| 367 | chprintf(stream, "unknown option '%s'\n", argv[3]); |
||
| 368 | return AOS_INVALID_ARGUMENTS;
|
||
| 369 | } |
||
| 370 | e545e620 | Thomas Schöpping | } |
| 371 | } |
||
| 372 | // if the user wants to modify the string matching
|
||
| 373 | else if (strcmp(argv[2], "match") == 0) { |
||
| 374 | // there must be a further argument
|
||
| 375 | if (argc > 3) { |
||
| 376 | if (strcmp(argv[3], "casesensitive") == 0) { |
||
| 377 | 6b53f6bf | Thomas Schöpping | aos.shell.config |= AOS_SHELL_CONFIG_MATCH_CASE; |
| 378 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
| 379 | } |
||
| 380 | else if (strcmp(argv[3], "caseinsensitive") == 0) { |
||
| 381 | 6b53f6bf | Thomas Schöpping | aos.shell.config &= ~AOS_SHELL_CONFIG_MATCH_CASE; |
| 382 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
| 383 | } |
||
| 384 | } |
||
| 385 | } |
||
| 386 | } |
||
| 387 | // if the user wants to retrieve the shell configuration
|
||
| 388 | else {
|
||
| 389 | chprintf(stream, "current shell configuration:\n");
|
||
| 390 | chprintf(stream, " prompt text: %s\n",
|
||
| 391 | 6b53f6bf | Thomas Schöpping | (aos.shell.prompt != NULL) ? aos.shell.prompt : "n/a"); |
| 392 | 8399aeae | Thomas Schöpping | char time[10]; |
| 393 | 6b53f6bf | Thomas Schöpping | switch (aos.shell.config & (AOS_SHELL_CONFIG_PROMPT_UPTIME | AOS_SHELL_CONFIG_PROMPT_DATETIME)) {
|
| 394 | 8399aeae | Thomas Schöpping | case AOS_SHELL_CONFIG_PROMPT_UPTIME:
|
| 395 | strcpy(time, "uptime"); break; |
||
| 396 | case AOS_SHELL_CONFIG_PROMPT_DATETIME:
|
||
| 397 | strcpy(time, "date&time"); break; |
||
| 398 | default:
|
||
| 399 | strcpy(time, "no time"); break; |
||
| 400 | } |
||
| 401 | e545e620 | Thomas Schöpping | chprintf(stream, " prompt style: %s, %s\n",
|
| 402 | 6b53f6bf | Thomas Schöpping | (aos.shell.config & AOS_SHELL_CONFIG_PROMPT_MINIMAL) ? "minimal" : "text", |
| 403 | 8399aeae | Thomas Schöpping | time); |
| 404 | e545e620 | Thomas Schöpping | chprintf(stream, " input method: %s\n",
|
| 405 | 6b53f6bf | Thomas Schöpping | (aos.shell.config & AOS_SHELL_CONFIG_INPUT_OVERWRITE) ? "replace" : "insert"); |
| 406 | e545e620 | Thomas Schöpping | chprintf(stream, " text matching: %s\n",
|
| 407 | 6b53f6bf | Thomas Schöpping | (aos.shell.config & AOS_SHELL_CONFIG_MATCH_CASE) ? "case sensitive" : "case insensitive"); |
| 408 | e545e620 | Thomas Schöpping | retval = AOS_OK; |
| 409 | } |
||
| 410 | } |
||
| 411 | 8399aeae | Thomas Schöpping | // if the user wants to configure the date or time
|
| 412 | else if (strcmp(argv[1], "--date&time") == 0 && argc == 4) { |
||
| 413 | struct tm dt;
|
||
| 414 | aosSysGetDateTime(&dt); |
||
| 415 | unsigned int val = atoi(argv[3]); |
||
| 416 | if (strcmp(argv[2], "year") == 0) { |
||
| 417 | dt.tm_year = val - 1900;
|
||
| 418 | } |
||
| 419 | else if (strcmp(argv[2], "month") == 0 && val <= 12) { |
||
| 420 | dt.tm_mon = val - 1;
|
||
| 421 | } |
||
| 422 | else if (strcmp(argv[2], "day") == 0 && val <= 31) { |
||
| 423 | dt.tm_mday = val; |
||
| 424 | } |
||
| 425 | else if (strcmp(argv[2], "hour") == 0 && val < 24) { |
||
| 426 | dt.tm_hour = val; |
||
| 427 | } |
||
| 428 | else if (strcmp(argv[2], "minute") == 0 && val < 60) { |
||
| 429 | dt.tm_min = val; |
||
| 430 | } |
||
| 431 | else if (strcmp(argv[2], "second") == 0 && val < 60) { |
||
| 432 | dt.tm_sec = val; |
||
| 433 | } |
||
| 434 | else {
|
||
| 435 | chprintf(stream, "unknown option '%s' or value '%s'\n", argv[2], argv[3]); |
||
| 436 | return AOS_INVALID_ARGUMENTS;
|
||
| 437 | } |
||
| 438 | dt.tm_wday = aosTimeDayOfWeekFromDate(dt.tm_mday, dt.tm_mon+1, dt.tm_year+1900) % 7; |
||
| 439 | aosSysSetDateTime(&dt); |
||
| 440 | |||
| 441 | // read and print new date and time
|
||
| 442 | aosSysGetDateTime(&dt); |
||
| 443 | chprintf(stream, "date/time set to %02u:%02u:%02u @ %02u-%02u-%04u\n",
|
||
| 444 | dt.tm_hour, dt.tm_min, dt.tm_sec, |
||
| 445 | dt.tm_mday, dt.tm_mon+1, dt.tm_year+1900); |
||
| 446 | |||
| 447 | retval = AOS_OK; |
||
| 448 | } |
||
| 449 | e545e620 | Thomas Schöpping | } |
| 450 | |||
| 451 | // print help, if required
|
||
| 452 | if (retval == AOS_INVALID_ARGUMENTS) {
|
||
| 453 | chprintf(stream, "Usage: %s OPTION\n", argv[0]); |
||
| 454 | chprintf(stream, "Options:\n");
|
||
| 455 | chprintf(stream, " --help\n");
|
||
| 456 | chprintf(stream, " Print this help text.\n");
|
||
| 457 | chprintf(stream, " --shell [OPT [VAL]]\n");
|
||
| 458 | chprintf(stream, " Set or retrieve shell configuration.\n");
|
||
| 459 | chprintf(stream, " Possible OPTs and VALs are:\n");
|
||
| 460 | 8399aeae | Thomas Schöpping | chprintf(stream, " prompt text|minimal|uptime|date&time|notime\n");
|
| 461 | e545e620 | Thomas Schöpping | chprintf(stream, " Configures the prompt.\n");
|
| 462 | chprintf(stream, " match casesensitive|caseinsenitive\n");
|
||
| 463 | chprintf(stream, " Configures string matching.\n");
|
||
| 464 | 8399aeae | Thomas Schöpping | chprintf(stream, " --date&time OPT VAL\n");
|
| 465 | chprintf(stream, " Set the date/time value of OPT to VAL.\n");
|
||
| 466 | chprintf(stream, " Possible OPTs are:\n");
|
||
| 467 | chprintf(stream, " year\n");
|
||
| 468 | chprintf(stream, " month\n");
|
||
| 469 | chprintf(stream, " day\n");
|
||
| 470 | chprintf(stream, " hour\n");
|
||
| 471 | chprintf(stream, " minute\n");
|
||
| 472 | chprintf(stream, " second\n");
|
||
| 473 | e545e620 | Thomas Schöpping | } |
| 474 | |||
| 475 | return (argc > 1 && strcmp(argv[1], "--help") == 0) ? AOS_OK : retval; |
||
| 476 | } |
||
| 477 | |||
| 478 | /**
|
||
| 479 | * @brief Callback function for the system:info shell command.
|
||
| 480 | *
|
||
| 481 | * @param[in] stream The I/O stream to use.
|
||
| 482 | * @param[in] argc Number of arguments.
|
||
| 483 | * @param[in] argv List of pointers to the arguments.
|
||
| 484 | *
|
||
| 485 | * @return An exit status.
|
||
| 486 | * @retval AOS_OK The command was executed successfully.
|
||
| 487 | */
|
||
| 488 | static int _shellcmd_infocb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
| 489 | {
|
||
| 490 | ba516b61 | Thomas Schöpping | aosDbgCheck(stream != NULL);
|
| 491 | |||
| 492 | e545e620 | Thomas Schöpping | (void)argc;
|
| 493 | (void)argv;
|
||
| 494 | |||
| 495 | // print system information
|
||
| 496 | _printSystemInfo(stream); |
||
| 497 | |||
| 498 | // print time measurement precision
|
||
| 499 | 3e1a9c79 | Thomas Schöpping | chprintf(stream, "module time resolution: %uus\n", AOS_SYSTEM_TIME_RESOLUTION);
|
| 500 | e545e620 | Thomas Schöpping | |
| 501 | // print system uptime
|
||
| 502 | aos_timestamp_t uptime; |
||
| 503 | aosSysGetUptime(&uptime); |
||
| 504 | chprintf(stream, "The system is running for\n");
|
||
| 505 | chprintf(stream, "%10u days\n", (uint32_t)(uptime / MICROSECONDS_PER_DAY));
|
||
| 506 | chprintf(stream, "%10u hours\n", (uint8_t)(uptime % MICROSECONDS_PER_DAY / MICROSECONDS_PER_HOUR));
|
||
| 507 | chprintf(stream, "%10u minutes\n", (uint8_t)(uptime % MICROSECONDS_PER_HOUR / MICROSECONDS_PER_MINUTE));
|
||
| 508 | chprintf(stream, "%10u seconds\n", (uint8_t)(uptime % MICROSECONDS_PER_MINUTE / MICROSECONDS_PER_SECOND));
|
||
| 509 | chprintf(stream, "%10u milliseconds\n", (uint16_t)(uptime % MICROSECONDS_PER_SECOND / MICROSECONDS_PER_MILLISECOND));
|
||
| 510 | chprintf(stream, "%10u microseconds\n", (uint16_t)(uptime % MICROSECONDS_PER_MILLISECOND / MICROSECONDS_PER_MICROSECOND));
|
||
| 511 | 9ebb11a9 | Thomas Schöpping | #if (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) && (AMIROOS_CFG_PROFILE == true) |
| 512 | 3e1a9c79 | Thomas Schöpping | chprintf(stream, "SSSP synchronization offset: %.3fus per %uus\n", _syssyncskew, AMIROOS_CFG_SSSP_SYSSYNCPERIOD);
|
| 513 | aed3754b | Thomas Schöpping | #endif /* AMIROOS_CFG_SSSP_MASTER != true && AMIROOS_CFG_PROFILE == true */ |
| 514 | 3e1a9c79 | Thomas Schöpping | _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
|
| 515 | e545e620 | Thomas Schöpping | |
| 516 | aed3754b | Thomas Schöpping | #if (AMIROOS_CFG_SHELL_ENABLE == true) |
| 517 | // print shell info
|
||
| 518 | chprintf(stream, "System shell information:\n");
|
||
| 519 | chprintf(stream, "\tnumber of commands: %u\n", aosShellCountCommands(&aos.shell));
|
||
| 520 | chprintf(stream, "\tmaximum line width: %u characters\n", aos.shell.linesize);
|
||
| 521 | chprintf(stream, "\tmaximum #arguments: %u\n", aos.shell.arglistsize);
|
||
| 522 | chprintf(stream, "\tshell thread stack size: %u bytes\n", aosThdGetStacksize(aos.shell.thread));
|
||
| 523 | #if (CH_DBG_FILL_THREADS == TRUE)
|
||
| 524 | 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); |
||
| 525 | #endif /* CH_DBG_FILL_THREADS == TRUE */ |
||
| 526 | _printSystemInfoSeparator(stream, '=', SYSTEM_INFO_WIDTH);
|
||
| 527 | #endif /* AMIROOS_CFG_SHELL_ENABLE == true */ |
||
| 528 | |||
| 529 | e545e620 | Thomas Schöpping | return AOS_OK;
|
| 530 | } |
||
| 531 | |||
| 532 | /**
|
||
| 533 | * @brief Callback function for the sytem:shutdown shell command.
|
||
| 534 | *
|
||
| 535 | * @param[in] stream The I/O stream to use.
|
||
| 536 | * @param[in] argc Number of arguments.
|
||
| 537 | * @param[in] argv List of pointers to the arguments.
|
||
| 538 | *
|
||
| 539 | * @return An exit status.
|
||
| 540 | * @retval AOS_OK The command was executed successfully.
|
||
| 541 | * @retval AOS_INVALID_ARGUMENTS There was an issue with the arguments.
|
||
| 542 | */
|
||
| 543 | static int _shellcmd_shutdowncb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
| 544 | {
|
||
| 545 | ba516b61 | Thomas Schöpping | aosDbgCheck(stream != NULL);
|
| 546 | |||
| 547 | e545e620 | Thomas Schöpping | // print help text
|
| 548 | if (argc != 2 || strcmp(argv[1], "--help") == 0) { |
||
| 549 | chprintf(stream, "Usage: %s OPTION\n", argv[0]); |
||
| 550 | chprintf(stream, "Options:\n");
|
||
| 551 | chprintf(stream, " --help\n");
|
||
| 552 | chprintf(stream, " Print this help text.\n");
|
||
| 553 | chprintf(stream, " --hibernate, -h\n");
|
||
| 554 | chprintf(stream, " Shutdown to hibernate mode.\n");
|
||
| 555 | chprintf(stream, " Least energy saving, but allows charging via pins.\n");
|
||
| 556 | chprintf(stream, " --deepsleep, -d\n");
|
||
| 557 | chprintf(stream, " Shutdown to deepsleep mode.\n");
|
||
| 558 | chprintf(stream, " Minimum energy consumption while allowing charging via plug.\n");
|
||
| 559 | chprintf(stream, " --transportation, -t\n");
|
||
| 560 | chprintf(stream, " Shutdown to transportation mode.\n");
|
||
| 561 | chprintf(stream, " Minimum energy consumption with all interrupts disabled (no charging).\n");
|
||
| 562 | chprintf(stream, " --restart, -r\n");
|
||
| 563 | chprintf(stream, " Shutdown and restart system.\n");
|
||
| 564 | |||
| 565 | return (argc != 2) ? AOS_INVALID_ARGUMENTS : AOS_OK; |
||
| 566 | } |
||
| 567 | // handle argument
|
||
| 568 | else {
|
||
| 569 | if (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--hibernate") == 0) { |
||
| 570 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_HIBERNATE); |
| 571 | 9b5281e9 | Thomas Schöpping | chThdTerminate(chThdGetSelfX()); |
| 572 | e545e620 | Thomas Schöpping | return AOS_OK;
|
| 573 | } |
||
| 574 | else if (strcmp(argv[1], "-d") == 0 || strcmp(argv[1], "--deepsleep") == 0) { |
||
| 575 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_DEEPSLEEP); |
| 576 | 9b5281e9 | Thomas Schöpping | chThdTerminate(chThdGetSelfX()); |
| 577 | e545e620 | Thomas Schöpping | return AOS_OK;
|
| 578 | } |
||
| 579 | else if (strcmp(argv[1], "-t") == 0 || strcmp(argv[1], "--transportation") == 0) { |
||
| 580 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_TRANSPORTATION); |
| 581 | 9b5281e9 | Thomas Schöpping | chThdTerminate(chThdGetSelfX()); |
| 582 | e545e620 | Thomas Schöpping | return AOS_OK;
|
| 583 | } |
||
| 584 | else if (strcmp(argv[1], "-r") == 0 || strcmp(argv[1], "--restart") == 0) { |
||
| 585 | 6b53f6bf | Thomas Schöpping | chEvtBroadcastFlags(&aos.events.os, AOS_SYSTEM_EVENTFLAGS_RESTART); |
| 586 | 9b5281e9 | Thomas Schöpping | chThdTerminate(chThdGetSelfX()); |
| 587 | e545e620 | Thomas Schöpping | return AOS_OK;
|
| 588 | } |
||
| 589 | else {
|
||
| 590 | chprintf(stream, "unknown argument %s\n", argv[1]); |
||
| 591 | return AOS_INVALID_ARGUMENTS;
|
||
| 592 | } |
||
| 593 | } |
||
| 594 | } |
||
| 595 | |||
| 596 | #if (AMIROOS_CFG_TESTS_ENABLE == true) || defined(__DOXYGEN__) |
||
| 597 | /**
|
||
| 598 | * @brief Callback function for the kernel:test shell command.
|
||
| 599 | *
|
||
| 600 | * @param[in] stream The I/O stream to use.
|
||
| 601 | * @param[in] argc Number of arguments.
|
||
| 602 | * @param[in] argv List of pointers to the arguments.
|
||
| 603 | *
|
||
| 604 | * @return An exit status.
|
||
| 605 | */
|
||
| 606 | static int _shellcmd_kerneltestcb(BaseSequentialStream* stream, int argc, char* argv[]) |
||
| 607 | {
|
||
| 608 | ba516b61 | Thomas Schöpping | aosDbgCheck(stream != NULL);
|
| 609 | |||
| 610 | e545e620 | Thomas Schöpping | (void)argc;
|
| 611 | (void)argv;
|
||
| 612 | |||
| 613 | 0128be0f | Marc Rothmann | msg_t retval = test_execute(stream, &rt_test_suite); |
| 614 | e545e620 | Thomas Schöpping | |
| 615 | return retval;
|
||
| 616 | } |
||
| 617 | #endif /* AMIROOS_CFG_TESTS_ENABLE == true */ |
||
| 618 | aed3754b | Thomas Schöpping | #endif /* AMIROOS_CFG_SHELL_ENABLE == true */ |
| 619 | e545e620 | Thomas Schöpping | |
| 620 | 6d5d8856 | Thomas Schöpping | // suppress warning in case no interrupt GPIOs are defined
|
| 621 | #pragma GCC diagnostic push
|
||
| 622 | #pragma GCC diagnostic ignored "-Wunused-function" |
||
| 623 | e545e620 | Thomas Schöpping | /**
|
| 624 | 1e5f7648 | Thomas Schöpping | * @brief Generic callback function for GPIO interrupts.
|
| 625 | e545e620 | Thomas Schöpping | *
|
| 626 | 1e5f7648 | Thomas Schöpping | * @param[in] args Pointer to the GPIO pad identifier.
|
| 627 | e545e620 | Thomas Schöpping | */
|
| 628 | 1e5f7648 | Thomas Schöpping | static void _intCallback(void* args) |
| 629 | e545e620 | Thomas Schöpping | {
|
| 630 | 1e5f7648 | Thomas Schöpping | aosDbgCheck((args != NULL) && (*((iopadid_t*)args) < sizeof(eventflags_t) * 8)); |
| 631 | e545e620 | Thomas Schöpping | |
| 632 | chSysLockFromISR(); |
||
| 633 | 1e5f7648 | Thomas Schöpping | chEvtBroadcastFlagsI(&aos.events.io, (eventflags_t)1 << *((iopadid_t*)args));
|
| 634 | e545e620 | Thomas Schöpping | chSysUnlockFromISR(); |
| 635 | |||
| 636 | return;
|
||
| 637 | } |
||
| 638 | 6d5d8856 | Thomas Schöpping | #pragma GCC diagnostic pop
|
| 639 | e545e620 | Thomas Schöpping | |
| 640 | 9ebb11a9 | Thomas Schöpping | #if ((AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true)) || defined(__DOXYGEN__) |
| 641 | e545e620 | Thomas Schöpping | /**
|
| 642 | * @brief Callback function for the Sync signal interrupt.
|
||
| 643 | *
|
||
| 644 | 1e5f7648 | Thomas Schöpping | * @param[in] args Pointer to the GPIO pad identifier.
|
| 645 | e545e620 | Thomas Schöpping | */
|
| 646 | 0128be0f | Marc Rothmann | static void _signalSyncCallback(void *args) |
| 647 | e545e620 | Thomas Schöpping | {
|
| 648 | 1e5f7648 | Thomas Schöpping | aosDbgCheck((args != NULL) && (*((iopadid_t*)args) < sizeof(eventflags_t) * 8)); |
| 649 | e545e620 | Thomas Schöpping | |
| 650 | apalControlGpioState_t s_state; |
||
| 651 | aos_timestamp_t uptime; |
||
| 652 | |||
| 653 | chSysLockFromISR(); |
||
| 654 | 9461fadc | Thomas Schöpping | // if the system is in operation phase
|
| 655 | if (aos.sssp.stage == AOS_SSSP_OPERATION) {
|
||
| 656 | // read signal S
|
||
| 657 | apalControlGpioGet(&moduleSsspGpioSync, &s_state); |
||
| 658 | // if S was toggled from on to off
|
||
| 659 | if (s_state == APAL_GPIO_OFF) {
|
||
| 660 | // get current uptime
|
||
| 661 | aosSysGetUptimeX(&uptime); |
||
| 662 | // align the uptime with the synchronization period
|
||
| 663 | if (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD < AMIROOS_CFG_SSSP_SYSSYNCPERIOD / 2) { |
||
| 664 | _uptime -= uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD; |
||
| 665 | 3e1a9c79 | Thomas Schöpping | #if (AMIROOS_CFG_PROFILE == true) |
| 666 | _syssyncskew = ((1.0f - SYSTEM_SYSSYNCSKEW_LPFACTOR) * _syssyncskew) + (SYSTEM_SYSSYNCSKEW_LPFACTOR * (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD)); |
||
| 667 | #endif
|
||
| 668 | 9461fadc | Thomas Schöpping | } else {
|
| 669 | _uptime += AMIROOS_CFG_SSSP_SYSSYNCPERIOD - (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD); |
||
| 670 | 3e1a9c79 | Thomas Schöpping | #if (AMIROOS_CFG_PROFILE == true) |
| 671 | _syssyncskew = ((1.0f - SYSTEM_SYSSYNCSKEW_LPFACTOR) * _syssyncskew) - (SYSTEM_SYSSYNCSKEW_LPFACTOR * (AMIROOS_CFG_SSSP_SYSSYNCPERIOD - (uptime % AMIROOS_CFG_SSSP_SYSSYNCPERIOD))); |
||
| 672 | #endif
|
||
| 673 | 9461fadc | Thomas Schöpping | } |
| 674 | e545e620 | Thomas Schöpping | } |
| 675 | } |
||
| 676 | // broadcast event
|
||
| 677 | 1e5f7648 | Thomas Schöpping | chEvtBroadcastFlagsI(&aos.events.io, (eventflags_t)1 << *((iopadid_t*)args));
|
| 678 | e545e620 | Thomas Schöpping | chSysUnlockFromISR(); |
| 679 | |||
| 680 | return;
|
||
| 681 | } |
||
| 682 | 9ebb11a9 | Thomas Schöpping | #endif /* (AMIROOS_CFG_SSSP_ENABLE == true) && (AMIROOS_CFG_SSSP_MASTER != true) */ |
| 683 | e545e620 | Thomas Schöpping | |
| 684 | /**
|
||
| 685 | * @brief Callback function for the uptime accumulation timer.
|
||
| 686 | *
|
||
| 687 | * @param[in] par Generic parameter.
|
||
| 688 | */
|
||
| 689 | static void _uptimeCallback(void* par) |
||
| 690 | {
|
||
| 691 | (void)par;
|
||
| 692 | |||
| 693 | chSysLockFromISR(); |
||
| 694 | // read current time in system ticks
|
||
| 695 | register const systime_t st = chVTGetSystemTimeX(); |
||
| 696 | // update the uptime variables
|
||
| 697 | 1e5f7648 | Thomas Schöpping | _uptime += chTimeI2US(chTimeDiffX(_synctime, st)); |
| 698 | e545e620 | Thomas Sc |