mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-24 06:07:52 -04:00
[sw/bootloader] minor edits in console output
This commit is contained in:
parent
6d2ac36e53
commit
6e245464e0
1 changed files with 4 additions and 1 deletions
|
@ -371,7 +371,7 @@ int main(void) {
|
|||
#if (AUTO_BOOT_TIMEOUT != 0)
|
||||
if (neorv32_mtime_available()) {
|
||||
|
||||
PRINT_TEXT("\n\nAutoboot in "xstr(AUTO_BOOT_TIMEOUT)"s. Press key to abort.\n");
|
||||
PRINT_TEXT("\n\nAutoboot in "xstr(AUTO_BOOT_TIMEOUT)"s. Press any key to abort.\n");
|
||||
uint64_t timeout_time = neorv32_mtime_get_time() + (uint64_t)(AUTO_BOOT_TIMEOUT * NEORV32_SYSINFO.CLK);
|
||||
|
||||
while(1){
|
||||
|
@ -438,6 +438,9 @@ int main(void) {
|
|||
start_app();
|
||||
}
|
||||
}
|
||||
else if (c == '?') {
|
||||
PRINT_TEXT("(c) by Stephan Nolting\nhttps://github.com/stnolting/neorv32");
|
||||
}
|
||||
else { // unknown command
|
||||
PRINT_TEXT("Invalid CMD");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue