Skip to content

Commit

Permalink
maybe start-up time measure maybe not
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc committed Mar 12, 2024
1 parent e8b1fc3 commit 05d744b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions firmware/console/eficonsole.cpp
Expand Up @@ -42,8 +42,8 @@ static void testHardFault() {
}

static void sayHello() {
efiPrintf(PROTOCOL_HELLO_PREFIX " rusEFI LLC (c) 2012-2023. All rights reserved.");
efiPrintf(PROTOCOL_HELLO_PREFIX " rusEFI v%d@%s", getRusEfiVersion(), VCS_VERSION);
efiPrintf(PROTOCOL_HELLO_PREFIX " rusEFI LLC (c) 2012-2024. All rights reserved.");
efiPrintf(PROTOCOL_HELLO_PREFIX " rusEFI v%d@%s now=%d", getRusEfiVersion(), VCS_VERSION, getTimeNowMs());
efiPrintf(PROTOCOL_HELLO_PREFIX " Chibios Kernel: %s", CH_KERNEL_VERSION);
efiPrintf(PROTOCOL_HELLO_PREFIX " Compiled: " __DATE__ " - " __TIME__ "");
efiPrintf(PROTOCOL_HELLO_PREFIX " COMPILER=%s", __VERSION__);
Expand Down Expand Up @@ -152,6 +152,7 @@ static void sayHello() {

/**
* Time to finish output. This is needed to avoid mix-up of this methods output and console command confirmation
* this code here dates back to 2015. today in 2024 I have no idea what it does :(
*/
chThdSleepMilliseconds(5);
}
Expand Down

0 comments on commit 05d744b

Please sign in to comment.