progress
This commit is contained in:
parent
3d0f6c70b1
commit
c749807b4b
|
@ -51,6 +51,13 @@ static void sayHello(void) {
|
||||||
scheduleMsg(&logger, "*** Chibios Kernel: %s", CH_KERNEL_VERSION);
|
scheduleMsg(&logger, "*** Chibios Kernel: %s", CH_KERNEL_VERSION);
|
||||||
scheduleMsg(&logger, "*** Compiled: " __DATE__ " - " __TIME__ "");
|
scheduleMsg(&logger, "*** Compiled: " __DATE__ " - " __TIME__ "");
|
||||||
scheduleMsg(&logger, "COMPILER=%s", __VERSION__);
|
scheduleMsg(&logger, "COMPILER=%s", __VERSION__);
|
||||||
|
|
||||||
|
#if defined(STM32F4) || defined(STM32F7)
|
||||||
|
uint32_t *uid = ((uint32_t *)UID_BASE);
|
||||||
|
scheduleMsg(&logger, "UID=%x %x %x", uid[0], uid[1], uid[2]);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifdef CH_FREQUENCY
|
#ifdef CH_FREQUENCY
|
||||||
scheduleMsg(&logger, "CH_FREQUENCY=%d", CH_FREQUENCY);
|
scheduleMsg(&logger, "CH_FREQUENCY=%d", CH_FREQUENCY);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -716,6 +716,6 @@ int getRusEfiVersion(void) {
|
||||||
if (initBootloader() != 0)
|
if (initBootloader() != 0)
|
||||||
return 123;
|
return 123;
|
||||||
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
||||||
return 20200420;
|
return 20200422;
|
||||||
}
|
}
|
||||||
#endif /* EFI_UNIT_TEST */
|
#endif /* EFI_UNIT_TEST */
|
||||||
|
|
Loading…
Reference in New Issue