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

Revision:
0:349dc9b0984f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sun Mar 25 13:39:11 2012 +0000
@@ -0,0 +1,14 @@
+#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);
+    }
+}