Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- mmutai
- Date:
- 2017-11-17
- Revision:
- 2:130a5e5afb89
- Parent:
- 1:bc802d19f771
- Child:
- 3:0ef302d879b4
File content as of revision 2:130a5e5afb89:
#include "mbed.h" #define END_BYTE 0xFF #define START_BYTE 0x80 DigitalOut myled(LED1); Serial uart(p9, p10, 115200); // tx, rx, baud int main() { while(1) { uart.putc('a'); wait_ms(1); } }