command: Added some output for cmd_morse when there is no message set

This commit is contained in:
dragonmux 2022-07-26 16:57:22 +01:00 committed by Piotr Esden-Tempski
parent e013b48139
commit fb579e5929
1 changed files with 2 additions and 0 deletions

View File

@ -389,6 +389,8 @@ bool cmd_morse(target *t, int argc, const char **argv)
gdb_outf("%s\n", morse_msg);
DEBUG_WARN("%s\n", morse_msg);
}
else
gdb_out("No message\n");
return true;
}