This project implements a basic hello world using Mbed OS Community Edition. Use it as an example or a starting place for your own projects!
- Clone it to your machine. Don't forget to use
--recursive
to clone the submodules:git clone --recursive https://github.com/mbed-ce/mbed-ce-hello-world.git
- You may want to update the mbed-os submodule to the latest version, with
cd mbed-ce-hello-world/mbed-os && git fetch origin && git reset --hard origin/master
- Set up the GNU ARM toolchain (and other programs) on your machine using the toolchain setup guide.
- Set up the CMake project for editing. We have three ways to do this:
- On the command line
- Using the CLion IDE
- Using the VS Code IDE
- Build the
flash-HelloWorld
target to upload the code to a connected device.