would H7 work?

This commit is contained in:
rusefillc 2021-08-07 12:36:39 -04:00
parent 463bb87a55
commit 8234975ec0
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ static void sayHello(void) {
efiPrintf(PROTOCOL_HELLO_PREFIX " detected HSE clock %.2f MHz PLLM = %d", hseFrequencyMhz, autoDetectedRoundedMhz);
#endif /* ENABLE_AUTO_DETECT_HSE */
#if defined(STM32F4) || defined(STM32F7)
#if defined(STM32F4) || defined(STM32F7) || defined(STM32H7)
uint32_t *uid = ((uint32_t *)UID_BASE);
efiPrintf("UID=%x %x %x", uid[0], uid[1], uid[2]);
@ -65,7 +65,7 @@ static void sayHello(void) {
firmwareError(OBD_PCM_Processor_Fault, "rusEFI expected at least %dK of flash", MIN_FLASH_SIZE);
}
efiPrintf("rev=%x size=%d", mcuRevision, flashSize);
efiPrintf("MCU rev=%x size=%d", mcuRevision, flashSize);
#endif