icE1usb fw: Update list of debug commands

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Change-Id: I25c3d1db5d9ffae1cf4de83aed89b6394d032dd8
This commit is contained in:
Sylvain Munaut 2022-01-06 22:04:21 +01:00
parent d6737bbf93
commit b4d25799ff
1 changed files with 17 additions and 9 deletions

View File

@ -117,32 +117,40 @@ void main()
cmd = getchar_nowait();
if (cmd >= 0) {
if (cmd > 32 && cmd < 127) {
if (cmd > 32 && cmd < 127)
putchar(cmd);
putchar('\r');
putchar('\n');
}
putchar('\r');
putchar('\n');
switch (cmd)
{
case 'p':
usb_debug_print();
break;
case 'b':
boot_dfu();
break;
case 'o':
case 'p':
panic("Test panic");
break;
case 'q':
e1_debug_print(0, false);
break;
case 'O':
case 'Q':
e1_debug_print(0, true);
break;
case 'w':
e1_debug_print(1, false);
break;
case 'W':
e1_debug_print(1, true);
break;
case 'c':
usb_connect();
break;
case 'd':
usb_disconnect();
break;
case 'u':
usb_debug_print();
break;
default:
break;
}