laforge has submitted this change. (
https://gerrit.osmocom.org/c/osmo-e1-hardware/+/26845
)
Change subject: icE1usb fw: Update list of debug commands
......................................................................
icE1usb fw: Update list of debug commands
Signed-off-by: Sylvain Munaut <tnt(a)246tNt.com>
Change-Id: I25c3d1db5d9ffae1cf4de83aed89b6394d032dd8
---
M firmware/ice40-riscv/icE1usb/fw_app.c
1 file changed, 17 insertions(+), 9 deletions(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, approved
diff --git a/firmware/ice40-riscv/icE1usb/fw_app.c
b/firmware/ice40-riscv/icE1usb/fw_app.c
index 55218b8..f531d08 100644
--- a/firmware/ice40-riscv/icE1usb/fw_app.c
+++ b/firmware/ice40-riscv/icE1usb/fw_app.c
@@ -117,32 +117,40 @@
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;
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-e1-hardware/+/26845
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1-hardware
Gerrit-Branch: master
Gerrit-Change-Id: I25c3d1db5d9ffae1cf4de83aed89b6394d032dd8
Gerrit-Change-Number: 26845
Gerrit-PatchSet: 1
Gerrit-Owner: tnt <tnt(a)246tNt.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: merged