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; }