From 413ab4b9a62170b53c220bafe14d13b5b252972d Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Tue, 24 Feb 2015 22:07:25 -0800 Subject: [PATCH] FRONTPANEL: Added simulator command execution tracing during protocol debugging/initialization --- frontpanel/FrontPanelTest.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontpanel/FrontPanelTest.c b/frontpanel/FrontPanelTest.c index 96a95e9f..9a65f28b 100644 --- a/frontpanel/FrontPanelTest.c +++ b/frontpanel/FrontPanelTest.c @@ -132,7 +132,9 @@ if ((argc > 1) && ((!strcmp("-d", argv[1])) || (!strcmp("-D", argv[1])) || (!str /* Create pseudo config file for a test */ if ((f = fopen (sim_config, "w"))) { if (debug) { + fprintf (f, "set verbose\n"); fprintf (f, "set debug -n -a simulator.dbg\n"); + fprintf (f, "set log debug\n"); fprintf (f, "set cpu conhalt\n"); fprintf (f, "set remote telnet=2226\n"); fprintf (f, "set rem-con debug=XMT;RCV\n");