1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/shell/commands/sc_suit.c
Marian Buschsieweke 4f769c2f55
sys/shell/commands: add static qualifier where appropriate
Due to the conversion to XFA based SHELL_COMMAND() much fewer function
need to expose a symbol. Hence, spray `static` all over the place.
2022-06-11 14:38:58 +02:00

59 lines
1.3 KiB
C

/*
* Copyright (C) 2019 Alexandre Abadie <alexandre.abadie@inria.fr>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup sys_shell_commands
* @{
*
* @file
* @brief Trigger a firmware update from the shell
*
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
*
* @}
*/
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include "shell.h"
#include "suit/storage.h"
#include "suit/transport/coap.h"
static void _print_usage(char **argv)
{
printf("Usage: %s fetch <manifest url>\n", argv[0]);
printf(" %s seq_no\n", argv[0]);
}
static int _suit_handler(int argc, char **argv)
{
if (argc < 2) {
_print_usage(argv);
return 1;
}
if (strcmp(argv[1], "fetch") == 0) {
suit_coap_trigger((uint8_t *)argv[2], strlen(argv[2]));
}
else if (strcmp(argv[1], "seq_no") == 0) {
uint32_t seq_no = 0;
suit_storage_get_highest_seq_no(&seq_no);
printf("seq_no: 0x%08" PRIx32 "\n", seq_no);
}
else {
_print_usage(argv);
return -1;
}
return 0;
}
SHELL_COMMAND(suit, "Trigger a SUIT firmware update", _suit_handler);