Andy Pomfret / Mbed OS UoY-32C-lab3-tasks

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 void test() {
00004     int count = 3;
00005     printf("In test(), count = %d\r\n", count);
00006 }
00007 
00008 int main()
00009 {
00010     int count = 5;
00011     
00012     test();
00013     
00014     printf("In main(), count = %d\r\n", count);
00015     
00016     // Do nothing, forever...
00017     while (true);
00018 }