Andy Pomfret / Mbed OS UoY-32C-lab1-2

Dependencies:   UoY-serial

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 int main()
00004 {
00005     int var = 100;
00006     
00007     printf("var: %d\n", var);
00008 
00009     // Do nothing, forever...
00010     while (true);
00011 }