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:
152:235179ab3f27
Parent:
145:64910690c574
--- a/TARGET_TB_SENSE_12/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis_nvic.h	Fri Sep 15 14:46:57 2017 +0100
+++ b/TARGET_TB_SENSE_12/TARGET_Silicon_Labs/TARGET_EFM32/common/cmsis_nvic.h	Mon Oct 02 15:20:36 2017 +0100
@@ -8,7 +8,7 @@
 #define NVIC_NUM_VECTORS        (16 + EXT_IRQ_COUNT)     // CORE + MCU Peripherals
 
 /* For GCC, use dynamic vector table placement since otherwise we run into an alignment conflict */
-#if (defined (__GNUC__) && (!defined(__CC_ARM)))
+#if (defined (__GNUC__) && (!defined(__CC_ARM) && (!defined(__ARMCC_VERSION))))
 extern uint32_t __start_vector_table__;       // Dynamic vector positioning in GCC
 #define NVIC_RAM_VECTOR_ADDRESS (&__start_vector_table__)
 #else