mirror of https://github.com/ARMmbed/mbed-os.git
Merge branch 'master' of https://github.com/mbedmicro/mbed
commit
8c6ca15be8
|
@ -1,5 +1,5 @@
|
|||
mbed SDK
|
||||
========
|
||||
mbed SDK
|
||||
========
|
||||
|
||||
[](https://travis-ci.org/mbedmicro/mbed/builds)
|
||||
|
||||
|
@ -38,6 +38,7 @@ NXP:
|
|||
* [LPC1549](https://mbed.org/platforms/LPCXpresso1549/) (Cortex-M3)
|
||||
|
||||
Freescale:
|
||||
* FRDM-K20D50M
|
||||
* [FRDM-KL05Z](https://mbed.org/platforms/FRDM-KL05Z/) (Cortex-M0+)
|
||||
* [FRDM-KL25Z](http://mbed.org/platforms/KL25Z/) (Cortex-M0+)
|
||||
* [FRDM-KL46Z](https://mbed.org/platforms/FRDM-KL46Z/) (Cortex-M0+)
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#ifndef MBED_H
|
||||
#define MBED_H
|
||||
|
||||
#define MBED_LIBRARY_VERSION 30
|
||||
#define MBED_LIBRARY_VERSION 80
|
||||
|
||||
#include "platform.h"
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ from exporters import Exporter
|
|||
|
||||
class IAREmbeddedWorkbench(Exporter):
|
||||
NAME = 'IAR'
|
||||
TARGETS = ['LPC1768', 'NUCLEO_F401RE']
|
||||
TARGETS = ['LPC1768']
|
||||
TOOLCHAIN = 'IAR'
|
||||
|
||||
def generate(self):
|
||||
|
|
|
@ -284,7 +284,7 @@ class NUCLEO_F103RB(Target):
|
|||
|
||||
self.extra_labels = ['STM', 'STM32F1', 'STM32F103RB']
|
||||
|
||||
self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"]
|
||||
self.supported_toolchains = ["ARM", "uARM"]
|
||||
|
||||
|
||||
class NUCLEO_L152RE(Target):
|
||||
|
@ -298,7 +298,7 @@ class NUCLEO_L152RE(Target):
|
|||
|
||||
self.extra_labels = ['STM', 'STM32L1', 'STM32L152RE']
|
||||
|
||||
self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"]
|
||||
self.supported_toolchains = ["ARM", "uARM"]
|
||||
|
||||
|
||||
class NUCLEO_F401RE(Target):
|
||||
|
@ -312,7 +312,7 @@ class NUCLEO_F401RE(Target):
|
|||
|
||||
self.extra_labels = ['STM', 'STM32F4', 'STM32F401RE']
|
||||
|
||||
self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"]
|
||||
self.supported_toolchains = ["ARM", "uARM"]
|
||||
|
||||
|
||||
class NUCLEO_F030R8(Target):
|
||||
|
@ -326,7 +326,7 @@ class NUCLEO_F030R8(Target):
|
|||
|
||||
self.extra_labels = ['STM', 'STM32F0', 'STM32F030R8']
|
||||
|
||||
self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"]
|
||||
self.supported_toolchains = ["ARM", "uARM"]
|
||||
|
||||
|
||||
class LPC1347(Target):
|
||||
|
|
Loading…
Reference in New Issue