Application to showcase build problem when including mbed.h from .cpp and .c -files. Folder structure and nested #includes inside #ifndefX+#defineX+#endif obfuscate the reason. Compiler error is about 'keyword namespace not found', which happens when mbed.h is included from .c.

main.cpp

Committer:
MikkoZ
Date:
2016-09-27
Revision:
0:7c2be109ea78

File content as of revision 0:7c2be109ea78:

#include "foldertest2/foldertest2/foldertest2.h"
//#include "mbed.h"
int main() {
    bool led1 = false;
    while (true) {
        led1 = !led1;
        Thread::wait(500);
    }
}