From fcd05a04cbbed0c48f37bbcffd4d4fb715ff15fc Mon Sep 17 00:00:00 2001 From: xkevin190 Date: Wed, 8 Jun 2022 10:26:56 -0400 Subject: [PATCH] update: RIOT was updated to master --- RIOT | 2 +- examples/mesh4all_rpl_dag/main.c | 1 - firmware/main.c | 6 +----- firmware/sys/at_client/at_client.c | 1 - firmware/sys/storage/storage.c | 5 ----- 5 files changed, 2 insertions(+), 13 deletions(-) diff --git a/RIOT b/RIOT index 5496a65bb..5f5744509 160000 --- a/RIOT +++ b/RIOT @@ -1 +1 @@ -Subproject commit 5496a65bb1ea7189aa131b4c9eb78b85e14e57ee +Subproject commit 5f57445090ea89425916bfb56515561ac8da6640 diff --git a/examples/mesh4all_rpl_dag/main.c b/examples/mesh4all_rpl_dag/main.c index 195a4b11a..66590aec0 100644 --- a/examples/mesh4all_rpl_dag/main.c +++ b/examples/mesh4all_rpl_dag/main.c @@ -25,7 +25,6 @@ #include #include "shell.h" -#include "shell_commands.h" #include "log.h" #include "rpl_protocol.h" diff --git a/firmware/main.c b/firmware/main.c index 51726cb28..b7f9f929e 100644 --- a/firmware/main.c +++ b/firmware/main.c @@ -25,22 +25,18 @@ #include #include "shell.h" -#include "shell_commands.h" #include "msg.h" #include "log.h" #include "board.h" -static shell_command_t shell_extended_commands[] = { - {NULL, NULL, NULL}}; - int main(void) { LOG_INFO("~~ Welcome to Mesh4all ~~\n"); /* Start shell */ char line_buf[SHELL_DEFAULT_BUFSIZE]; - shell_run(shell_extended_commands, line_buf, SHELL_DEFAULT_BUFSIZE); + shell_run(NULL, line_buf, SHELL_DEFAULT_BUFSIZE); return 0; } diff --git a/firmware/sys/at_client/at_client.c b/firmware/sys/at_client/at_client.c index 230e35b63..4f0cb2e8f 100644 --- a/firmware/sys/at_client/at_client.c +++ b/firmware/sys/at_client/at_client.c @@ -28,7 +28,6 @@ #include "msg.h" #include "periph/uart.h" #include "shell.h" -#include "shell_commands.h" #include "thread.h" #include "timex.h" #include "xtimer.h" diff --git a/firmware/sys/storage/storage.c b/firmware/sys/storage/storage.c index befc546ed..f027c1bcf 100644 --- a/firmware/sys/storage/storage.c +++ b/firmware/sys/storage/storage.c @@ -22,11 +22,6 @@ #include #include #include - -#include "shell.h" -#include "shell_commands.h" -#include "msg.h" - #include "log.h" #include "board.h" #include "mtd.h"