From 501340ce8b84fec902e3bc654d0bc68a89cc1b02 Mon Sep 17 00:00:00 2001 From: Sam Grove Date: Tue, 16 Jun 2015 10:42:40 -0500 Subject: [PATCH] Update targets.py Use ARM by default for mdot, not uARM --- workspace_tools/targets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace_tools/targets.py b/workspace_tools/targets.py index 3fc4f53878..8c17ac54cc 100755 --- a/workspace_tools/targets.py +++ b/workspace_tools/targets.py @@ -766,7 +766,7 @@ class MTS_MDOT_F411RE(Target): self.extra_labels = ['STM', 'STM32F4', 'STM32F411RE'] self.macros = ['HSE_VALUE=26000000', 'OS_CLOCK=96000000', 'USE_PLL_HSE_EXTC=0', 'VECT_TAB_OFFSET=0x00010000'] self.supported_toolchains = ["ARM", "uARM", "GCC_ARM", "IAR"] - self.default_toolchain = "uARM" + self.default_toolchain = "ARM" def init_hooks(self, hook, toolchain_name): if toolchain_name in ['GCC_ARM', 'ARM_STD', 'ARM_MICRO']: