From 7925a468a92e9f7ec8e121b63d169e3e4f40d82c Mon Sep 17 00:00:00 2001 From: Marcelo Salazar Date: Tue, 28 Apr 2020 08:46:56 +0100 Subject: [PATCH] Remove KL05Z target --- targets/TARGET_Freescale/mbed_rtx.h | 6 ---- targets/targets.json | 47 --------------------------- tools/export/coide/__init__.py | 1 - tools/export/iar/iar_definitions.json | 3 -- tools/tests.py | 2 +- 5 files changed, 1 insertion(+), 58 deletions(-) diff --git a/targets/TARGET_Freescale/mbed_rtx.h b/targets/TARGET_Freescale/mbed_rtx.h index 7e54aac663..13e23ebee1 100644 --- a/targets/TARGET_Freescale/mbed_rtx.h +++ b/targets/TARGET_Freescale/mbed_rtx.h @@ -43,12 +43,6 @@ #define INITIAL_SP (0x20006000UL) #endif -#elif defined(TARGET_KL05Z) - -#ifndef INITIAL_SP -#define INITIAL_SP (0x20000C00UL) -#endif - #elif defined(TARGET_KL25Z) #ifndef INITIAL_SP diff --git a/targets/targets.json b/targets/targets.json index 313dbd90d3..5946a064dd 100644 --- a/targets/targets.json +++ b/targets/targets.json @@ -538,53 +538,6 @@ "1235" ] }, - "KL05Z": { - "supported_form_factors": [ - "ARDUINO" - ], - "core": "Cortex-M0+", - "default_toolchain": "uARM", - "extra_labels": [ - "Freescale", - "KLXX" - ], - "is_disk_virtual": true, - "supported_toolchains": [ - "ARM", - "uARM", - "GCC_ARM", - "IAR" - ], - "inherits": [ - "Target" - ], - "device_has": [ - "USTICKER", - "ANALOGIN", - "ANALOGOUT", - "I2C", - "I2CSLAVE", - "INTERRUPTIN", - "PORTIN", - "PORTINOUT", - "PORTOUT", - "PWMOUT", - "SEMIHOST", - "SERIAL", - "SLEEP", - "SPI", - "SPISLAVE", - "STDIO_MESSAGES" - ], - "default_lib": "small", - "release_versions": [ - "2" - ], - "device_name": "MKL05Z32xxx4", - "detect_code": [ - "0210" - ] - }, "KL25Z": { "supported_form_factors": [ "ARDUINO" diff --git a/tools/export/coide/__init__.py b/tools/export/coide/__init__.py index 97335992b9..265be3e51a 100644 --- a/tools/export/coide/__init__.py +++ b/tools/export/coide/__init__.py @@ -28,7 +28,6 @@ class CoIDE(Exporter): TARGETS = [ 'KL25Z', - 'KL05Z', 'LPC1768', 'ARCH_PRO', 'ARCH_MAX', diff --git a/tools/export/iar/iar_definitions.json b/tools/export/iar/iar_definitions.json index 43e110413b..66485b7874 100644 --- a/tools/export/iar/iar_definitions.json +++ b/tools/export/iar/iar_definitions.json @@ -231,9 +231,6 @@ "GBECoreSlave": 37, "NEON":1 }, - "MKL05Z32xxx4": { - "OGChipSelectEditMenu": "MKL05Z32xxx4\tFreescale MKL05Z32xxx4" - }, "STM32F031K6": { "OGChipSelectEditMenu": "STM32F031x6\tST STM32F031x6" }, diff --git a/tools/tests.py b/tools/tests.py index e6aaaca0bf..ae4517f525 100644 --- a/tools/tests.py +++ b/tools/tests.py @@ -731,7 +731,7 @@ TESTS = [ "id": "KL25Z_5", "description": "MMA8451Q accelerometer", "source_dir": join(TEST_DIR, "mbed", "i2c_MMA8451Q"), "dependencies": [MBED_LIBRARIES, TEST_MBED_LIB, join(PERIPHERALS, 'MMA8451Q')], - "mcu": ["KL25Z", "KL05Z", "KL46Z"], + "mcu": ["KL25Z", "KL46Z"], "automated": True, },