Template project for University of York ELE00032C Lab 3 tasks

Dependencies:   UoY-serial

main.cpp

Committer:
ajp109
Date:
2021-12-17
Revision:
3:272ec1db47dc
Parent:
2:64d80449da6d

File content as of revision 3:272ec1db47dc:

#include "mbed.h"

void test() {
    int count = 3;
    printf("In test(), count = %d\r\n", count);
}

int main()
{
    int count = 5;
    
    test();
    
    printf("In main(), count = %d\r\n", count);
    
    // Do nothing, forever...
    while (true);
}