From 50ad9fbb82cdbd0b3ac3fdf0eeb4690b212c66b7 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Fri, 22 May 2020 15:54:38 -0700 Subject: [PATCH] SCP: Fix the allowed_remote_cmds to also list STEP before SAMPLEOUT As discussed in #854 --- sim_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_console.c b/sim_console.c index b62bc7b3..0e357cce 100644 --- a/sim_console.c +++ b/sim_console.c @@ -747,10 +747,10 @@ static CTAB allowed_remote_cmds[] = { { "ASSIGN", &assign_cmd, 0 }, { "DEASSIGN", &deassign_cmd, 0 }, { "CONTINUE", &x_continue_cmd, 0 }, + { "STEP", &x_step_cmd, 0 }, { "REPEAT", &x_repeat_cmd, 0 }, { "COLLECT", &x_collect_cmd, 0 }, { "SAMPLEOUT",&x_sampleout_cmd, 0 }, - { "STEP", &x_step_cmd, 0 }, { "PWD", &pwd_cmd, 0 }, { "SAVE", &save_cmd, 0 }, { "DIR", &dir_cmd, 0 },