added support for arm compilers

pull/1341/head
Wojciech Gorniak 2015-09-25 11:23:48 +02:00
parent a06da2a29d
commit 9cf7aa36f2
1 changed files with 1 additions and 1 deletions

View File

@ -657,7 +657,7 @@ class ELMO_F411RE(Target):
Target.__init__(self) Target.__init__(self)
self.core = "Cortex-M4F" self.core = "Cortex-M4F"
self.extra_labels = ['STM', 'STM32F4', 'STM32F411RE'] self.extra_labels = ['STM', 'STM32F4', 'STM32F411RE']
self.supported_toolchains = [ "GCC_ARM" ] self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"]
self.default_toolchain = "GCC_ARM" self.default_toolchain = "GCC_ARM"
self.supported_form_factors = ["ARDUINO"] self.supported_form_factors = ["ARDUINO"]
self.detect_code = ["----"] self.detect_code = ["----"]