used the mbed folder from a the frdm_gpio program to get the blinky program to compile

Dependencies:   mbed

Fork of mbed-os-example-mbed5-blinky by mbed-os-examples

main.cpp

Committer:
co657_vk96
Date:
2017-10-04
Revision:
48:4c41b44e5759
Parent:
29:0b58d21e87d6

File content as of revision 48:4c41b44e5759:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}