We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7c8f58 commit a7f758cCopy full SHA for a7f758c
libraries/Portenta_System/examples/PortentaH7_updateBootloader/PortentaH7_updateBootloader.ino
@@ -15,7 +15,7 @@ void setup() {
15
uint8_t availableBootloaderVersion = (envie_bootloader_mbed_bin + bootloader_data_offset)[1];
16
17
Serial.println("Magic Number (validation): " + String(bootloader_data[0], HEX));
18
- Serial.println("Bootloader version: " + String(bootloader_data[1]));
+ Serial.println("Bootloader version: " + String(currentBootloaderVersion));
19
Serial.println("Clock source: " + getClockSource(bootloader_data[2]));
20
Serial.println("USB Speed: " + getUSBSpeed(bootloader_data[3]));
21
Serial.println("Has Ethernet: " + String(bootloader_data[4] == 1 ? "Yes" : "No"));
0 commit comments