diff --git a/hw/application_fpga/fw/testapp/main.c b/hw/application_fpga/fw/testapp/main.c index 8eaf9cd..c8acdec 100644 --- a/hw/application_fpga/fw/testapp/main.c +++ b/hw/application_fpga/fw/testapp/main.c @@ -266,9 +266,12 @@ int main(void) } puts("\r\n"); - puts("Now echoing what you type...\r\n"); + puts("Now echoing what you type...Type + to reset device\r\n"); for (;;) { in = readbyte(&mode, &mode_bytes_left); + if (in == '+') { + syscall(TK1_SYSCALL_RESET, 0); + } writebyte(MODE_CDC); writebyte(1);