Sample of program breaking when a certain set of source files are in a folder, but is fine when it is in the root. In this case, it is tested with RF12B.cpp, RF12B.h and rfdefs

Dependencies:   mbed

main.cpp

Committer:
narshu
Date:
2012-03-25
Revision:
0:349dc9b0984f

File content as of revision 0:349dc9b0984f:

#include "mbed.h"
#include "RF12B.h"

DigitalOut myled(LED1);
RF12B rf(p5, p6, p7, p8, p9);

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