This repository documents my previous efforts to develop programs for an LPC1768 microcontroller using the Mbed OS. The reason I chose this MCU is that the original board which Mbed OS was first developed for was the following board that was based on LPC1768 and is the most documented hardware for Mbed OS:
I did not have access to the "mbed LPC1768" board. Instead, I used another board based on LPC1768 produced by ECA which you can see in the following image. It lacks some of the components of the original Mbed board such as Ethernet PHY and FLASH memory chips, but in return exposes all the I/O pins of the MCU:
There are several ways to initialize your Mbed OS project. I personally prefer using PlatformIO which is easier and faster.
For this hardware you should create a new project in PlatformIO with the following configuartions:
- Board: NXP mbed LPC1768
- Framework: Mbed
This is the first program which prints some text to the console output (TXD0 => P0.2) and blinks an LED (P1.18). Default console baudrate is 9600.
#include "mbed.h"
#define WAIT_TIME_MS 1000
DigitalOut led1(LED1); // LED1 => P1.18
int main()
{
printf("Hello, World!\n");
printf("This is the blinky example running on Mbed OS %d.%d.%d.\n", MBED_MAJOR_VERSION, MBED_MINOR_VERSION, MBED_PATCH_VERSION);
while (true)
{
led1 = !led1; // Toggle LED1
printf("LED Status: %s\n", (led1.read() ? "OFF" : "ON")); // As LED is active-low, it is ON when led1 = 0
thread_sleep_for(WAIT_TIME_MS); // Delay in miliseconds
}
}