From 14a0daaffd0f0659682f5f26c94688743b29e810 Mon Sep 17 00:00:00 2001 From: David Banks Date: Sat, 9 Nov 2019 12:41:19 +0000 Subject: [PATCH] Firmware: return inserts blank link Change-Id: I86f943cb8cb872a25999af378aefdd4987083950 --- firmware/AtomBusMon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/AtomBusMon.c b/firmware/AtomBusMon.c index fdc1ffd..7cc1d33 100644 --- a/firmware/AtomBusMon.c +++ b/firmware/AtomBusMon.c @@ -1732,9 +1732,9 @@ int main(void) { last = (last + 1) & (HISTORY_LENGTH - 1); strcpy(history[last], command); } + // Execute the command + dispatchCmd(command); } - // Execute the command - dispatchCmd(command); // Reset the history cursor to the current slot index = -1; }