A test program to show that nrf52 seems to not be able to export from the online compiler. An error occurs

Dependencies:   mbed

main.cpp

Committer:
andrewfelch
Date:
2016-10-04
Revision:
0:b1c9240ca79d

File content as of revision 0:b1c9240ca79d:

#include "mbed.h"

DigitalOut myLED(p17);

int main( void )
{
    while(1)
    {
        myLED = 1;
        wait(0.5);
        myLED = 0;
        wait(0.5);
    }
}