From 65355e26103531c456c93a349a5466a9d8811f14 Mon Sep 17 00:00:00 2001 From: 0xc0170 Date: Fri, 26 Feb 2016 13:00:47 +0000 Subject: [PATCH] Target - remove cortex-m7 IAR support for 2 targets They will be reenabled once we update IAR version for the release/test --- workspace_tools/targets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace_tools/targets.py b/workspace_tools/targets.py index b1e6387b2a..54ce5def01 100755 --- a/workspace_tools/targets.py +++ b/workspace_tools/targets.py @@ -846,7 +846,7 @@ class NUCLEO_F746ZG(Target): Target.__init__(self) self.core = "Cortex-M7F" self.extra_labels = ['STM', 'STM32F7', 'STM32F746', 'STM32F746ZG'] - self.supported_toolchains = ["ARM", "uARM", "IAR", "GCC_ARM"] + self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"] self.detect_code = ["0816"] self.progen = { "target":"nucleo-f746zg", @@ -1023,7 +1023,7 @@ class DISCO_F746NG(Target): Target.__init__(self) self.core = "Cortex-M7F" self.extra_labels = ['STM', 'STM32F7', 'STM32F746', 'STM32F746NG'] - self.supported_toolchains = ["ARM", "uARM", "IAR", "GCC_ARM"] + self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"] self.detect_code = ["0815"] self.progen = { "target":"disco-f746ng",