The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Revision:
171:3a7713b1edbc
Parent:
170:e95d10626187
Child:
172:65be27845400
diff -r e95d10626187 -r 3a7713b1edbc platform/mbed_toolchain.h
--- a/platform/mbed_toolchain.h	Thu Sep 06 13:39:34 2018 +0100
+++ b/platform/mbed_toolchain.h	Thu Nov 08 11:45:42 2018 +0000
@@ -144,6 +144,8 @@
 #ifndef MBED_WEAK
 #if defined(__ICCARM__)
 #define MBED_WEAK __weak
+#elif defined(__MINGW32__)
+#define MBED_WEAK
 #else
 #define MBED_WEAK __attribute__((weak))
 #endif