From 1ed67120cde08dc32262d4adc04ff1f693a448d8 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 2 May 2021 23:20:11 -0400 Subject: debugcmds: Remove start/end_group commands These commands were never used by the main code and are not particularly helpful for debugging. Remove them to reduce code size - in particular on the pru architecture. Signed-off-by: Kevin O'Connor --- src/debugcmds.c | 40 ++-------------------------------------- 1 file changed, 2 insertions(+), 38 deletions(-) (limited to 'src/debugcmds.c') diff --git a/src/debugcmds.c b/src/debugcmds.c index 22350c18..f1f2fb0f 100644 --- a/src/debugcmds.c +++ b/src/debugcmds.c @@ -1,48 +1,12 @@ // Debugging commands. // -// Copyright (C) 2016-2019 Kevin O'Connor +// Copyright (C) 2016-2021 Kevin O'Connor // // This file may be distributed under the terms of the GNU GPLv3 license. #include "board/io.h" // readl #include "board/irq.h" // irq_save #include "command.h" // DECL_COMMAND -#include "sched.h" // sched_add_timer - - -/**************************************************************** - * Group commands - ****************************************************************/ - -static struct timer group_timer; - -static uint_fast8_t -group_end_event(struct timer *timer) -{ - shutdown("Missed scheduling of next event"); -} - -void -command_start_group(uint32_t *args) -{ - sched_del_timer(&group_timer); - group_timer.func = group_end_event; - group_timer.waketime = args[0]; - sched_add_timer(&group_timer); -} -DECL_COMMAND(command_start_group, "start_group clock=%u"); - -void -command_end_group(uint32_t *args) -{ - sched_del_timer(&group_timer); -} -DECL_COMMAND(command_end_group, "end_group"); - - -/**************************************************************** - * Register debug commands - ****************************************************************/ void command_debug_read(uint32_t *args) @@ -92,4 +56,4 @@ void command_debug_nop(uint32_t *args) { } -DECL_COMMAND_FLAGS(command_debug_nop, HF_IN_SHUTDOWN, "debug_nop data=%*s"); +DECL_COMMAND_FLAGS(command_debug_nop, HF_IN_SHUTDOWN, "debug_nop"); -- cgit v1.2.3-70-g09d2