diff --git a/examples/suit_update/Makefile b/examples/suit_update/Makefile index b00db43999..0a5712222f 100644 --- a/examples/suit_update/Makefile +++ b/examples/suit_update/Makefile @@ -13,12 +13,9 @@ RIOTBASE ?= $(CURDIR)/../.. # Include packages that pull up and auto-init the link layer. # NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present -# uncomment this to compile in support for a possibly available radio -#USEMODULE += netdev_default - USEMODULE += auto_init_gnrc_netif # Specify the mandatory networking modules for IPv6 and UDP -USEMODULE += gnrc_ipv6_router_default +USEMODULE += gnrc_ipv6_default USEMODULE += sock_udp # Additional networking modules that can be dropped if not needed USEMODULE += gnrc_icmpv6_echo @@ -87,6 +84,8 @@ ifeq (1,$(USE_ETHOS)) IFACE ?= riot0 TERMPROG = $(RIOTTOOLS)/ethos/ethos TERMFLAGS = $(IFACE) $(PORT) +else + USEMODULE += netdev_default endif # Ensure both slot bin files are always generated and linked to avoid compiling diff --git a/examples/suit_update/main.c b/examples/suit_update/main.c index 847d3e4022..47333c4194 100644 --- a/examples/suit_update/main.c +++ b/examples/suit_update/main.c @@ -40,6 +40,7 @@ #endif #ifdef MODULE_PERIPH_GPIO +#include "board.h" #include "periph/gpio.h" #endif diff --git a/sys/suit/handlers_global.c b/sys/suit/handlers_global.c index 2e906e67e7..9a73809096 100644 --- a/sys/suit/handlers_global.c +++ b/sys/suit/handlers_global.c @@ -44,7 +44,7 @@ static int _version_handler(suit_manifest_t *manifest, int key, if (nanocbor_get_int32(it, &version) >= 0) { if (version == SUIT_VERSION) { manifest->validated |= SUIT_VALIDATED_VERSION; - LOG_INFO("suit: validated manifest version\n)"); + LOG_INFO("suit: validated manifest version\n"); return SUIT_OK; } } @@ -71,11 +71,11 @@ static int _seq_no_handler(suit_manifest_t *manifest, int key, seq_nr, stored_seq_no); if (seq_nr <= stored_seq_no) { - LOG_ERROR("seq_nr <= running image\n)"); + LOG_ERROR("seq_nr <= running image\n"); return SUIT_ERR_SEQUENCE_NUMBER; } - LOG_INFO("suit: validated sequence number\n)"); + LOG_INFO("suit: validated sequence number\n"); manifest->seq_number = seq_nr; manifest->validated |= SUIT_VALIDATED_SEQ_NR; return SUIT_OK;