Template project for University of York ELE00032C Lab 1

Dependencies:   UoY-serial

main.cpp

Committer:
ajp109
Date:
2021-12-16
Revision:
2:e459707d3d6b
Parent:
1:e51aa8988fd1

File content as of revision 2:e459707d3d6b:

#include "mbed.h"

int main()
{
    int var = 100;
    
    printf("var: %d\n", var);

    // Do nothing, forever...
    while (true);
}