After looking at the Mbed OS 6.3 release notes, I used the cloud environment to test this.
Step 1) New Program “mbed OS Blinky LED HelloWorld”.
1a) click on “mbed-os” and look at the Revision (it showed the 2nd newest - revision aa70f680bb). I updated to the newest 0db72d0cf2, which has in the comment "tag::mbed-os-6.3.0.
Step 2) I added 3 lines of code, creating a main.cpp like you see here:
/* mbed Microcontroller Library
* Copyright (c) 2019 ARM Limited
* SPDX-License-Identifier: Apache-2.0
*/
#include "mbed.h"
#include "platform/mbed_thread.h"
Serial pc(USBTX, USBRX, 460800); // ADDED
// Blinking rate in milliseconds
#define BLINKING_RATE_MS 500
int main()
{
printf("mbed booted! Target %s, Build %s %s\r\n", MBED_STRINGIFY(TARGET_NAME), __DATE__, __TIME__); // ADDED
printf(" v %d.%d.%d\r\n", MBED_MAJOR_VERSION, MBED_MINOR_VERSION, MBED_PATCH_VERSION); // ADDED
// Initialise the digital pin LED1 as an output
DigitalOut led(LED1);
while (true) {
led = !led;
thread_sleep_for(BLINKING_RATE_MS);
}
}
Step 3) Build, download, program and reset the target
Step 4) Target emits the following:
mbed booted! Target LPC1768, Build Sep 28 2020 14:00:15
v 5.14.2
Should I have seen 6.3.0 instead of 5.14.2?