We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ece2ed commit 61812ffCopy full SHA for 61812ff
targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/TARGET_EVK/device.h
@@ -40,6 +40,13 @@
40
41
#define BOARD_ENET_PHY_ADDR (2)
42
43
+/* cmsis gcc defines this to be __Vectors. This causes a problem for this device as
44
+ its drivers uses __VECTOR_TABLE symbol from a linker. To avoid conflicts, we just undefine
45
+ this and use linker symbol as expected */
46
+#ifdef __VECTOR_TABLE
47
+#undef __VECTOR_TABLE
48
+#endif
49
+
50
#include "objects.h"
51
52
#endif
0 commit comments