+ // Try to get UART from EEPROM
+ uint32_t uartEEPROM = eepromReadU32(CFG_EEPROM_UART_SPEED);
+ if ((uartEEPROM < 9600) || (uartEEPROM > 115200))
+ {
+ printf("UART not set in EEPROM%s", CFG_PRINTF_NEWLINE);
+ }
+ else
+ {
+ printf("%u%s", (unsigned int)uartEEPROM, CFG_PRINTF_NEWLINE);
+ }