From 906961d7819101666429b7b61a7b4ba562e0b6a8 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Thu, 10 Mar 2016 15:50:20 +0000 Subject: [PATCH 01/12] Targets - add progen uvision templates --- workspace_tools/targets.py | 352 +++++++++++++++++++++++++++++++++++++ 1 file changed, 352 insertions(+) diff --git a/workspace_tools/targets.py b/workspace_tools/targets.py index 4c9cf9d6d0..45d8464031 100755 --- a/workspace_tools/targets.py +++ b/workspace_tools/targets.py @@ -126,6 +126,9 @@ class LPC11C24(LPCTarget): self.progen = { "target":"lpc11c24_301", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class LPC1114(LPCTarget): @@ -137,6 +140,9 @@ class LPC1114(LPCTarget): self.default_toolchain = "uARM" self.progen = { "target":"lpc1114_102", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } class LPC11U24(LPCTarget): @@ -149,6 +155,9 @@ class LPC11U24(LPCTarget): self.detect_code = ["1040"] self.progen = { "target":"lpc11u24_201", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } class OC_MBUINO(LPC11U24): @@ -161,6 +170,9 @@ class OC_MBUINO(LPC11U24): self.default_toolchain = "uARM" self.progen = { "target":"lpc11u24_201", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } class LPC11U24_301(LPCTarget): @@ -195,6 +207,9 @@ class LPC11U35_401(LPCTarget): self.default_toolchain = "uARM" self.progen = { "target":"lpc11u35_401", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } class LPC11U35_501(LPCTarget): @@ -206,7 +221,11 @@ class LPC11U35_501(LPCTarget): self.default_toolchain = "uARM" self.progen = { "target":"lpc11u35_501", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } + class LPC11U35_501_IBDAP(LPCTarget): def __init__(self): LPCTarget.__init__(self) @@ -214,6 +233,12 @@ class LPC11U35_501_IBDAP(LPCTarget): self.extra_labels = ['NXP', 'LPC11UXX', 'MCU_LPC11U35_501'] self.supported_toolchains = ["ARM", "uARM", "GCC_ARM", "GCC_CR" , "IAR"] self.default_toolchain = "uARM" + self.progen = { + "target":"lpc11u35_501", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } class XADOW_M0(LPCTarget): def __init__(self): @@ -222,6 +247,12 @@ class XADOW_M0(LPCTarget): self.extra_labels = ['NXP', 'LPC11UXX', 'MCU_LPC11U35_501'] self.supported_toolchains = ["ARM", "uARM", "GCC_ARM", "GCC_CR", "IAR"] self.default_toolchain = "uARM" + self.progen = { + "target":"lpc11u35_501", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } class LPC11U35_Y5_MBUG(LPCTarget): def __init__(self): @@ -230,6 +261,12 @@ class LPC11U35_Y5_MBUG(LPCTarget): self.extra_labels = ['NXP', 'LPC11UXX', 'MCU_LPC11U35_501'] self.supported_toolchains = ["ARM", "uARM", "GCC_ARM", "GCC_CR" , "IAR"] self.default_toolchain = "uARM" + self.progen = { + "target":"lpc11u35_501", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } class LPC11U37_501(LPCTarget): def __init__(self): @@ -238,6 +275,12 @@ class LPC11U37_501(LPCTarget): self.extra_labels = ['NXP', 'LPC11UXX'] self.supported_toolchains = ["ARM", "uARM", "GCC_ARM", "GCC_CR", "IAR"] self.default_toolchain = "uARM" + self.progen = { + "target":"lpc11u37_501", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } class LPCCAPPUCCINO(LPC11U37_501): def __init__(self): @@ -251,6 +294,12 @@ class ARCH_GPRS(LPCTarget): self.supported_toolchains = ["ARM", "uARM", "GCC_ARM", "GCC_CR", "IAR"] self.default_toolchain = "uARM" self.supported_form_factors = ["ARDUINO"] + self.progen = { + "target":"lpc11u37_501", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } class LPC11U68(LPCTarget): def __init__(self): @@ -263,7 +312,11 @@ class LPC11U68(LPCTarget): self.detect_code = ["1168"] self.progen = { "target":"lpc11u68", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } + class LPC1347(LPCTarget): def __init__(self): LPCTarget.__init__(self) @@ -272,6 +325,9 @@ class LPC1347(LPCTarget): self.supported_toolchains = ["ARM", "GCC_ARM","IAR"] self.progen = { "target":"lpc1347", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class LPC1549(LPCTarget): @@ -285,7 +341,11 @@ class LPC1549(LPCTarget): self.detect_code = ["1549"] self.progen = { "target":"lpc1549", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } + class LPC1768(LPCTarget): def __init__(self): LPCTarget.__init__(self) @@ -295,6 +355,9 @@ class LPC1768(LPCTarget): self.detect_code = ["1010"] self.progen = { "target":"mbed-lpc1768", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class ARCH_PRO(LPCTarget): @@ -307,6 +370,9 @@ class ARCH_PRO(LPCTarget): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"arch-pro", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class UBLOX_C027(LPCTarget): @@ -319,6 +385,9 @@ class UBLOX_C027(LPCTarget): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"ublox-c027", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class XBED_LPC1768(LPCTarget): @@ -329,6 +398,12 @@ class XBED_LPC1768(LPCTarget): self.supported_toolchains = ["ARM", "uARM", "GCC_ARM", "GCC_CR", "IAR"] self.macros = ['TARGET_LPC1768'] self.detect_code = ["1010"] + self.progen = { + "target":"lpc1768", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } class LPC2368(LPCTarget): def __init__(self): @@ -336,6 +411,12 @@ class LPC2368(LPCTarget): self.core = "ARM7TDMI-S" self.extra_labels = ['NXP', 'LPC23XX'] self.supported_toolchains = ["ARM", "GCC_ARM", "GCC_CR"] + self.progen = { + "target":"lpc2368", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } class LPC2460(LPCTarget): def __init__(self): @@ -343,6 +424,12 @@ class LPC2460(LPCTarget): self.core = "ARM7TDMI-S" self.extra_labels = ['NXP', 'LPC2460'] self.supported_toolchains = ["GCC_ARM"] + self.progen = { + "target":"lpc2460", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } class LPC810(LPCTarget): def __init__(self): @@ -352,6 +439,12 @@ class LPC810(LPCTarget): self.supported_toolchains = ["uARM", "IAR", "GCC_ARM"] self.default_toolchain = "uARM" self.is_disk_virtual = True + self.progen = { + "target":"lpc810", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } class LPC812(LPCTarget): def __init__(self): @@ -365,6 +458,9 @@ class LPC812(LPCTarget): self.detect_code = ["1050"] self.progen = { "target":"lpc812m101", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } class LPC824(LPCTarget): @@ -378,6 +474,9 @@ class LPC824(LPCTarget): self.is_disk_virtual = True self.progen = { "target":"lpc824m201", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } class SSCI824(LPCTarget): @@ -388,6 +487,12 @@ class SSCI824(LPCTarget): self.supported_toolchains = ["uARM", "GCC_ARM"] self.default_toolchain = "uARM" self.is_disk_virtual = True + self.progen = { + "target":"ssci824", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } class LPC4088(LPCTarget): def __init__(self): @@ -398,6 +503,9 @@ class LPC4088(LPCTarget): self.is_disk_virtual = True self.progen = { "target":"lpc4088", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } def init_hooks(self, hook, toolchain_name): @@ -445,6 +553,9 @@ class LPC4330_M4(LPCTarget): self.supported_toolchains = ["ARM", "GCC_CR", "IAR", "GCC_ARM"] self.progen = { "target":"lpc4330", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class LPC4330_M0(LPCTarget): @@ -462,7 +573,11 @@ class LPC4337(LPCTarget): self.supported_toolchains = ["ARM"] self.progen = { "target":"lpc4337", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } + class LPC1800(LPCTarget): def __init__(self): LPCTarget.__init__(self) @@ -480,6 +595,9 @@ class LPC11U37H_401(LPCTarget): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"lpc11u37_401", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } ### Freescale ### @@ -494,6 +612,9 @@ class KL05Z(Target): self.is_disk_virtual = True self.progen = { "target":"frdm-kl05z", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } } class KL25Z(Target): @@ -507,6 +628,9 @@ class KL25Z(Target): self.detect_code = ["0200"] self.progen = { "target":"frdm-kl25z", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class KL26Z(Target): @@ -517,6 +641,12 @@ class KL26Z(Target): self.supported_toolchains = ["ARM","GCC_ARM","IAR"] self.supported_form_factors = ["ARDUINO"] self.is_disk_virtual = True + self.progen = { + "target":"kl26z", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } class KL43Z(Target): def __init__(self): @@ -528,6 +658,9 @@ class KL43Z(Target): self.is_disk_virtual = True self.progen = { "target":"frdm-kl43z", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class KL46Z(Target): @@ -541,6 +674,9 @@ class KL46Z(Target): self.detect_code = ["0220"] self.progen = { "target":"frdm-kl46z", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class K20D50M(Target): @@ -553,6 +689,9 @@ class K20D50M(Target): self.detect_code = ["0230"] self.progen = { "target":"frdm-k20d50m", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class TEENSY3_1(Target): @@ -567,6 +706,9 @@ class TEENSY3_1(Target): self.detect_code = ["0230"] self.progen = { "target":"teensy-31", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } def init_hooks(self, hook, toolchain_name): @@ -594,6 +736,9 @@ class K22F(Target): self.detect_code = ["0201"] self.progen = { "target":"frdm-k22f", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class K64F(Target): @@ -609,6 +754,9 @@ class K64F(Target): self.detect_code = ["0240"] self.progen = { "target":"frdm-k64f", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class MTS_GAMBIT(Target): @@ -622,6 +770,9 @@ class MTS_GAMBIT(Target): self.default_toolchain = "ARM" self.progen = { "target":"mts-gambit", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } ### STMicro ### @@ -637,6 +788,9 @@ class NUCLEO_F030R8(Target): self.detect_code = ["0725"] self.progen = { "target":"nucleo-f030r8", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F031K6(Target): @@ -650,6 +804,9 @@ class NUCLEO_F031K6(Target): self.detect_code = ["0791"] self.progen = { "target":"nucleo-f031k6", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F042K6(Target): @@ -663,6 +820,9 @@ class NUCLEO_F042K6(Target): self.detect_code = ["0785"] self.progen = { "target":"nucleo-f042k6", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F070RB(Target): @@ -676,6 +836,9 @@ class NUCLEO_F070RB(Target): self.detect_code = ["0755"] self.progen = { "target":"nucleo-f070rb", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F072RB(Target): @@ -689,6 +852,9 @@ class NUCLEO_F072RB(Target): self.detect_code = ["0730"] self.progen = { "target":"nucleo-f072rb", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F091RC(Target): @@ -702,6 +868,9 @@ class NUCLEO_F091RC(Target): self.detect_code = ["0750"] self.progen = { "target":"nucleo-f091rc", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F103RB(Target): @@ -715,6 +884,9 @@ class NUCLEO_F103RB(Target): self.detect_code = ["0700"] self.progen = { "target":"nucleo-f103rb", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F302R8(Target): @@ -728,6 +900,9 @@ class NUCLEO_F302R8(Target): self.detect_code = ["0705"] self.progen = { "target":"nucleo-f302r8", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F303K8(Target): @@ -741,6 +916,9 @@ class NUCLEO_F303K8(Target): self.detect_code = ["0775"] self.progen = { "target":"nucleo-f303k8", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F303RE(Target): @@ -754,6 +932,9 @@ class NUCLEO_F303RE(Target): self.detect_code = ["0745"] self.progen = { "target":"nucleo-f303re", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F334R8(Target): @@ -767,6 +948,9 @@ class NUCLEO_F334R8(Target): self.detect_code = ["0735"] self.progen = { "target":"nucleo-f334r8", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F401RE(Target): @@ -780,6 +964,9 @@ class NUCLEO_F401RE(Target): self.detect_code = ["0720"] self.progen = { "target":"nucleo-f401re", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F410RB(Target): @@ -793,6 +980,9 @@ class NUCLEO_F410RB(Target): self.detect_code = ["0740"] self.progen = { "target":"nucleo-f410rb", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_F411RE(Target): @@ -806,6 +996,9 @@ class NUCLEO_F411RE(Target): self.detect_code = ["0740"] self.progen = { "target":"nucleo-f411re", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class ELMO_F411RE(Target): @@ -829,6 +1022,9 @@ class NUCLEO_F446RE(Target): self.detect_code = ["0777"] self.progen = { "target":"nucleo-f446re", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class B96B_F446VE(Target): @@ -850,6 +1046,9 @@ class NUCLEO_F746ZG(Target): self.detect_code = ["0816"] self.progen = { "target":"nucleo-f746zg", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } "iar": { "template": [os.path.join(os.path.dirname(__file__), 'export', 'iar_nucleo_f746cg.ewp.tmpl')], } @@ -866,6 +1065,9 @@ class NUCLEO_L053R8(Target): self.detect_code = ["0715"] self.progen = { "target":"nucleo-l053r8", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_L073RZ(Target): @@ -879,6 +1081,9 @@ class NUCLEO_L073RZ(Target): self.detect_code = ["0760"] self.progen = { "target":"nucleo-l073rz", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_L152RE(Target): @@ -892,6 +1097,9 @@ class NUCLEO_L152RE(Target): self.detect_code = ["0710"] self.progen = { "target":"nucleo-l152re", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NUCLEO_L476RG(Target): @@ -905,6 +1113,9 @@ class NUCLEO_L476RG(Target): self.detect_code = ["0765"] self.progen = { "target":"nucleo-l476rg", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class STM32F3XX(Target): @@ -932,6 +1143,9 @@ class ARCH_MAX(Target): self.macros = ['LSI_VALUE=32000'] self.progen = { "target":"lpc1768", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } def program_cycle_s(self): return 2 @@ -970,6 +1184,9 @@ class DISCO_F334C8(Target): self.detect_code = ["0810"] self.progen = { "target":"disco-f334c8", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class DISCO_F407VG(Target): @@ -980,6 +1197,9 @@ class DISCO_F407VG(Target): self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"] self.progen = { "target":"disco-f407vg", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } self.default_toolchain = "ARM" @@ -992,6 +1212,9 @@ class DISCO_F429ZI(Target): self.default_toolchain = "uARM" self.progen = { "target":"", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class DISCO_F469NI(Target): @@ -1005,6 +1228,9 @@ class DISCO_F469NI(Target): self.detect_code = ["0788"] self.progen = { "target":"disco-f469ni", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class DISCO_L053C8(Target): @@ -1016,6 +1242,9 @@ class DISCO_L053C8(Target): self.default_toolchain = "uARM" self.progen = { "target":"disco-l053c8", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class DISCO_F746NG(Target): @@ -1027,6 +1256,9 @@ class DISCO_F746NG(Target): self.detect_code = ["0815"] self.progen = { "target":"disco-f746ng", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class DISCO_L476VG(Target): @@ -1039,6 +1271,9 @@ class DISCO_L476VG(Target): self.detect_code = ["0820"] self.progen = { "target":"disco-l476vg", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class MTS_MDOT_F405RG(Target): @@ -1052,6 +1287,9 @@ class MTS_MDOT_F405RG(Target): self.default_toolchain = "ARM" self.progen = { "target":"mts-mdot-f405rg", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class MTS_MDOT_F411RE(Target): @@ -1064,6 +1302,9 @@ class MTS_MDOT_F411RE(Target): self.default_toolchain = "ARM" self.progen = { "target":"mts-mdot-f411re", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } def init_hooks(self, hook, toolchain_name): @@ -1108,6 +1349,9 @@ class MTS_DRAGONFLY_F411RE(Target): self.default_toolchain = "ARM" self.progen = { "target":"mts-dragonfly-f411re", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } def init_hooks(self, hook, toolchain_name): @@ -1152,6 +1396,9 @@ class MOTE_L152RC(Target): self.detect_code = ["4100"] self.progen = { "target":"stm32l151rc", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class DISCO_F401VC(Target): def __init__(self): @@ -1180,6 +1427,9 @@ class NZ32_SC151(Target): self.default_toolchain = "uARM" self.progen = { "target":"stm32l151rc", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } # After flashing device, how long to delay until we assume program is running def program_cycle_s(self): @@ -1410,6 +1660,9 @@ class NRF51822(MCU_NRF51_16K): self.macros += ['TARGET_NRF51822_MKIT'] self.progen = { "target":"mkit", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NRF51822_BOOT(MCU_NRF51_16K_BOOT): def __init__(self): @@ -1429,6 +1682,9 @@ class ARCH_BLE(MCU_NRF51_16K): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"arch-ble", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class ARCH_BLE_BOOT(MCU_NRF51_16K_BOOT): @@ -1471,6 +1727,9 @@ class SEEED_TINY_BLE(MCU_NRF51_16K): MCU_NRF51_16K.__init__(self) self.progen = { "target":"seed-tinyble", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class SEEED_TINY_BLE_BOOT(MCU_NRF51_16K_BOOT): @@ -1491,6 +1750,9 @@ class HRM1017(MCU_NRF51_16K): self.macros += ['TARGET_NRF_LFCLK_RC'] self.progen = { "target":"hrm1017", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class HRM1017_BOOT(MCU_NRF51_16K_BOOT): def __init__(self): @@ -1510,6 +1772,9 @@ class RBLAB_NRF51822(MCU_NRF51_16K): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"rblab-nrf51822", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class RBLAB_NRF51822_BOOT(MCU_NRF51_16K_BOOT): @@ -1568,6 +1833,9 @@ class DELTA_DFCM_NNN40(MCU_NRF51_32K): self.macros += ['TARGET_NRF_LFCLK_RC'] self.progen = { "target":"dfcm-nnn40", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } def program_cycle_s(self): return 10 @@ -1594,6 +1862,9 @@ class NRF51_DK(MCU_NRF51_32K): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"nrf51-dk", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NRF51_DK_BOOT(MCU_NRF51_32K_BOOT): @@ -1615,6 +1886,9 @@ class NRF51_DONGLE(MCU_NRF51_32K): MCU_NRF51_32K.__init__(self) self.progen = { "target":"nrf51-dongle", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class NRF51_DONGLE_BOOT(MCU_NRF51_32K_BOOT): @@ -1792,6 +2066,9 @@ class MAXWSNENV(Target): self.default_toolchain = "ARM" self.progen = { "target": "maxwsnenv", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class MAX32600MBED(Target): @@ -1804,6 +2081,9 @@ class MAX32600MBED(Target): self.default_toolchain = "ARM" self.progen = { "target": "max32600mbed", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } ### Silicon Labs ### @@ -1816,6 +2096,13 @@ class EFM32GG_STK3700(Target): self.macros = ['EFM32GG990F1024'] self.supported_toolchains = ["GCC_ARM", "ARM", "uARM"] self.default_toolchain = "ARM" + self.progen = { + "target":"efm32gg_stk3700", #TODO: add to progen + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } + class EFM32LG_STK3600(Target): @@ -1826,6 +2113,13 @@ class EFM32LG_STK3600(Target): self.macros = ['EFM32LG990F256'] self.supported_toolchains = ["GCC_ARM", "ARM", "uARM"] self.default_toolchain = "ARM" + self.progen = { + "target":"efm32lg_stk3600", #TODO: add to progen + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } + class EFM32WG_STK3800(Target): @@ -1836,6 +2130,13 @@ class EFM32WG_STK3800(Target): self.macros = ['EFM32WG990F256'] self.supported_toolchains = ["GCC_ARM", "ARM", "uARM"] self.default_toolchain = "ARM" + self.progen = { + "target":"efm32wg_stk3800", #TODO: add to progen + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } + class EFM32ZG_STK3200(Target): @@ -1846,6 +2147,13 @@ class EFM32ZG_STK3200(Target): self.macros = ['EFM32ZG222F32'] self.supported_toolchains = ["GCC_ARM", "uARM"] self.default_toolchain = "uARM" + self.progen = { + "target":"efm32zg_stk3200", #TODO: add to progen + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } + class EFM32HG_STK3400(Target): def __init__(self): @@ -1855,6 +2163,13 @@ class EFM32HG_STK3400(Target): self.macros = ['EFM32HG322F64'] self.supported_toolchains = ["GCC_ARM", "uARM"] self.default_toolchain = "uARM" + self.progen = { + "target":"efm32hg_stk3400", #TODO: add to progen + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + } + } + class EFM32PG_STK3401(Target): def __init__(self): @@ -1864,6 +2179,12 @@ class EFM32PG_STK3401(Target): self.macros = ['EFM32PG1B200F256GM48'] self.supported_toolchains = ["GCC_ARM", "ARM", "uARM", "IAR"] self.default_toolchain = "ARM" + self.progen = { + "target":"efm32pg_stk3401", #TODO: add to progen + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } @@ -1877,6 +2198,12 @@ class WIZWIKI_W7500(Target): self.supported_toolchains = ["uARM", "ARM"] self.default_toolchain = "ARM" self.supported_form_factors = ["ARDUINO"] + self.progen = { + "target":"wizwiki_w7500", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } class WIZWIKI_W7500P(Target): def __init__(self): @@ -1886,6 +2213,12 @@ class WIZWIKI_W7500P(Target): self.supported_toolchains = ["uARM", "ARM"] self.default_toolchain = "ARM" self.supported_form_factors = ["ARDUINO"] + self.progen = { + "target":"wizwiki_w7500p", # TODO: add to progen + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } class WIZWIKI_W7500ECO(Target): def __init__(self): @@ -1894,6 +2227,13 @@ class WIZWIKI_W7500ECO(Target): self.extra_labels = ['WIZNET', 'W7500x', 'WIZwiki_W7500ECO'] self.supported_toolchains = ["uARM", "ARM"] self.default_toolchain = "ARM" + self.progen = { + "target":"wizwiki_w7500eco", # TODO: add to progen + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } + } + class SAMR21G18A(Target): def __init__(self): @@ -1905,6 +2245,9 @@ class SAMR21G18A(Target): self.default_toolchain = "ARM" self.progen = { "target":"samr21g18a", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class SAMD21J18A(Target): @@ -1917,6 +2260,9 @@ class SAMD21J18A(Target): self.default_toolchain = "ARM" self.progen = { "target":"samd21j18a", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class SAMD21G18A(Target): @@ -1929,6 +2275,9 @@ class SAMD21G18A(Target): self.default_toolchain = "ARM" self.progen = { "target":"samd21g18a", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } class SAML21J18A(Target): @@ -1941,6 +2290,9 @@ class SAML21J18A(Target): self.default_toolchain = "ARM" self.progen = { "target":"samr21j18a", + "uvision": { + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + } } # Get a single instance for each target From c44cf7a04d679a264a458fef49e61a8a0e1186e0 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Thu, 10 Mar 2016 15:58:41 +0000 Subject: [PATCH 02/12] Exporters - add progen to uvision --- workspace_tools/export/uvision4.py | 228 +++++------------------------ 1 file changed, 40 insertions(+), 188 deletions(-) diff --git a/workspace_tools/export/uvision4.py b/workspace_tools/export/uvision4.py index d18f457770..b32b69e16f 100644 --- a/workspace_tools/export/uvision4.py +++ b/workspace_tools/export/uvision4.py @@ -14,199 +14,51 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ -from exporters import Exporter -from os.path import basename +from os.path import basename, join, dirname +from project_generator_definitions.definitions import ProGenDef +from workspace_tools.export.exporters import Exporter +from workspace_tools.targets import TARGET_MAP, TARGET_NAMES class Uvision4(Exporter): + """ + Exporter class for IAR Systems. This class uses project generator. + """ + # These 2 are currently for exporters backward compatiblity NAME = 'uVision4' + TOOLCHAIN = 'ARM' + # PROGEN_ACTIVE contains information for exporter scripts that this is using progen + PROGEN_ACTIVE = True - TARGETS = [ - 'LPC1768', - 'LPC11U24', - 'LPC11U35_401', - 'LPC11U35_501', - 'KL05Z', - 'KL25Z', - 'KL43Z', - 'KL46Z', - 'K64F', - 'K22F', - 'K20D50M', - 'TEENSY3_1', - 'LPC1347', - 'LPC1114', - 'LPC11C24', - 'LPC4088', - 'LPC4088_DM', - 'LPC4330_M4', - 'LPC4337', - 'LPC812', - 'LPC824', - 'SSCI824', - 'NUCLEO_F030R8', - 'NUCLEO_F031K6', - 'NUCLEO_F042K6', - 'NUCLEO_F070RB', - 'NUCLEO_F072RB', - 'NUCLEO_F091RC', - 'NUCLEO_F103RB', - 'NUCLEO_F302R8', - 'NUCLEO_F303K8', - 'NUCLEO_F303RE', - 'NUCLEO_F334R8', - 'NUCLEO_F401RE', - 'NUCLEO_F410RB', - 'NUCLEO_F411RE', - 'NUCLEO_F446RE', - 'NUCLEO_F746ZG', - 'NUCLEO_L053R8', - 'NUCLEO_L073RZ', - 'NUCLEO_L152RE', - 'NUCLEO_L476RG', - 'B96B_F446VE', - 'UBLOX_C027', - 'LPC1549', - 'LPC11U68', - # Removed as uvision4_lpc11u35_501.uvproj.tmpl is missing. - #'LPC11U35_501', - 'NRF51822', - 'HRM1017', - 'RBLAB_NRF51822', - 'ARCH_PRO', - 'ARCH_BLE', - 'DISCO_F051R8', - 'DISCO_F100RB', - 'DISCO_F303VC', - 'DISCO_F407VG', - 'DISCO_F429ZI', - 'DISCO_F469NI', - 'DISCO_L053C8', - 'DISCO_F334C8', - 'DISCO_F746NG', - 'DISCO_L476VG', - 'MTS_GAMBIT', - 'ARCH_MAX', - 'MTS_MDOT_F405RG', - 'NRF51_DK', - 'NRF51_DONGLE', - 'SEEED_TINY_BLE', - 'LPC11U37H_401', - 'DELTA_DFCM_NNN40', - 'MAXWSNENV', - 'MAX32600MBED', - 'MOTE_L152RC', - 'NZ32_SC151', - 'SAMR21G18A', - 'SAMD21J18A', - 'SAMD21G18A', - 'SAML21J18A', - ] + # backward compatibility with our scripts + TARGETS = [] + for target in TARGET_NAMES: + try: + if (ProGenDef('uvision').is_supported(str(TARGET_MAP[target])) or + ProGenDef('uvision').is_supported(TARGET_MAP[target].progen['target'])): + TARGETS.append(target) + except AttributeError: + # target is not supported yet + continue - USING_MICROLIB = [ - 'LPC11U24', - 'LPC11U35_401', - 'LPC11U35_501', - 'LPC1114', - 'LPC11C24', - 'LPC812', - 'LPC824', - 'SSCI824', - 'NUCLEO_F030R8', - 'NUCLEO_F031K6', - 'NUCLEO_F042K6', - 'NUCLEO_F070RB', - 'NUCLEO_F072RB', - 'NUCLEO_F091RC', - 'NUCLEO_F103RB', - 'NUCLEO_F302R8', - 'NUCLEO_F303K8', - 'NUCLEO_F303RE', - 'NUCLEO_F334R8', - 'NUCLEO_F401RE', - 'NUCLEO_F410RB', - 'NUCLEO_F411RE', - 'NUCLEO_F446RE', - 'NUCLEO_F746ZG', - 'NUCLEO_L053R8', - 'NUCLEO_L073RZ', - 'NUCLEO_L152RE', - 'NUCLEO_L476RG', - 'DISCO_F051R8', - 'DISCO_F100RB', - 'DISCO_F334C8', - 'DISCO_F429ZI', - 'DISCO_F469NI', - 'DISCO_L053C8', - 'DISCO_L476VG', - 'B96B_F446VE', - 'DISCO_F407VG', - 'DISCO_F303VC', - 'LPC1549', - 'LPC11U68', - 'LPC11U35_501', - 'KL05Z', - 'LPC11U37H_401', - 'MOTE_L152RC', - 'NZ32_SC151', - 'SAMR21G18A', - 'SAMD21J18A', - 'SAMD21G18A', - 'SAML21J18A', - 'ARM_IOTSS_BEID', - 'ARM_MPS2_M0', - 'ARM_MPS2_M0P', - 'ARM_MPS2_M3', - 'ARM_MPS2_M4', - 'ARM_MPS2_M7', - ] - - FILE_TYPES = { - 'c_sources':'1', - 'cpp_sources':'8', - 's_sources':'2' - } - - FLAGS = [ - "--gnu", "--no_rtti", - ] - - # By convention uVision projects do not show header files in the editor: - # 'headers':'5', - - def get_toolchain(self): - return 'uARM' if (self.target in self.USING_MICROLIB) else 'ARM' - - def get_flags(self): - return self.FLAGS def generate(self): - source_files = { - 'mbed': [], - 'hal': [], - 'src': [] - } - for r_type, n in Uvision4.FILE_TYPES.iteritems(): - for file in getattr(self.resources, r_type): - f = {'name': basename(file), 'type': n, 'path': file} - if file.startswith("mbed\\common"): - source_files['mbed'].append(f) - elif file.startswith("mbed\\targets"): - source_files['hal'].append(f) - else: - source_files['src'].append(f) - source_files = dict( [(k,v) for k,v in source_files.items() if len(v)>0]) - ctx = { - 'name': self.program_name, - 'include_paths': self.resources.inc_dirs, - 'scatter_file': self.resources.linker_script, - 'object_files': self.resources.objects + self.resources.libraries, - 'source_files': source_files.items(), - 'symbols': self.get_symbols() + ['__ASSERT_MSG'], - 'hex_files' : self.resources.hex_files, - 'flags' : self.get_flags(), - } - target = self.target.lower() - # Project file - self.gen_file('uvision4_%s.uvproj.tmpl' % target, ctx, '%s.uvproj' % self.program_name) - self.gen_file('uvision4_%s.uvopt.tmpl' % target, ctx, '%s.uvopt' % self.program_name) + """ Generates the project files """ + project_data = self.progen_get_project_data() + tool_specific = {} + # Expand tool specific settings by uivison specific settings which are required + try: + if TARGET_MAP[self.target].progen['uivison']['template']: + tool_specific['uivison'] = TARGET_MAP[self.target].progen['uivison'] + except KeyError: + # use default template + # by the mbed projects + tool_specific['uvision'] = { + 'template': [join(dirname(__file__), 'uvision.tmpl')], + } + + project_data['tool_specific'] = {} + project_data['tool_specific'].update(tool_specific) + project_data['common']['macros'].append('__ASSERT_MSG') + self.progen_gen_file('uvision', project_data) + From 8df53e4c07196369447f6cf8c6de1ec09d066244 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Thu, 10 Mar 2016 19:39:06 +0100 Subject: [PATCH 03/12] Exporters uvision - remove all old templates --- .../export/uvision4_arch_ble.uvopt.tmpl | 184 ------- .../export/uvision4_arch_ble.uvproj.tmpl | 431 ----------------- .../export/uvision4_arch_max.uvopt.tmpl | 210 -------- .../export/uvision4_arch_max.uvproj.tmpl | 425 ---------------- .../export/uvision4_arch_pro.uvopt.tmpl | 201 -------- .../export/uvision4_arch_pro.uvproj.tmpl | 422 ---------------- .../export/uvision4_arm_iotss_beid.uvopt.tmpl | 190 -------- .../uvision4_arm_iotss_beid.uvproj.tmpl | 428 ---------------- .../export/uvision4_arm_mps2_m0.uvopt.tmpl | 190 -------- .../export/uvision4_arm_mps2_m0.uvproj.tmpl | 428 ---------------- .../export/uvision4_arm_mps2_m0p.uvopt.tmpl | 190 -------- .../export/uvision4_arm_mps2_m0p.uvproj.tmpl | 428 ---------------- .../export/uvision4_arm_mps2_m3.uvopt.tmpl | 190 -------- .../export/uvision4_arm_mps2_m3.uvproj.tmpl | 428 ---------------- .../export/uvision4_arm_mps2_m4.uvopt.tmpl | 190 -------- .../export/uvision4_arm_mps2_m4.uvproj.tmpl | 428 ---------------- .../export/uvision4_arm_mps2_m7.uvopt.tmpl | 190 -------- .../export/uvision4_arm_mps2_m7.uvproj.tmpl | 428 ---------------- .../export/uvision4_b96b_f446ve.uvopt.tmpl | 218 --------- .../export/uvision4_b96b_f446ve.uvproj.tmpl | 440 ----------------- .../uvision4_delta_dfcm_nnn40.uvopt.tmpl | 214 -------- .../uvision4_delta_dfcm_nnn40.uvproj.tmpl | 431 ----------------- .../export/uvision4_disco_f051r8.uvopt.tmpl | 208 -------- .../export/uvision4_disco_f051r8.uvproj.tmpl | 438 ----------------- .../export/uvision4_disco_f100rb.uvopt.tmpl | 218 --------- .../export/uvision4_disco_f100rb.uvproj.tmpl | 438 ----------------- .../export/uvision4_disco_f303vc.uvopt.tmpl | 208 -------- .../export/uvision4_disco_f303vc.uvproj.tmpl | 438 ----------------- .../export/uvision4_disco_f334c8.uvopt.tmpl | 208 -------- .../export/uvision4_disco_f334c8.uvproj.tmpl | 438 ----------------- .../export/uvision4_disco_f407vg.uvopt.tmpl | 210 -------- .../export/uvision4_disco_f407vg.uvproj.tmpl | 430 ----------------- .../export/uvision4_disco_f429zi.uvopt.tmpl | 188 -------- .../export/uvision4_disco_f429zi.uvproj.tmpl | 425 ---------------- .../export/uvision4_disco_f469ni.uvopt.tmpl | 205 -------- .../export/uvision4_disco_f469ni.uvproj.tmpl | 455 ----------------- .../export/uvision4_disco_f746ng.uvopt.tmpl | 185 ------- .../export/uvision4_disco_f746ng.uvproj.tmpl | 446 ----------------- .../export/uvision4_disco_l053c8.uvopt.tmpl | 208 -------- .../export/uvision4_disco_l053c8.uvproj.tmpl | 438 ----------------- .../export/uvision4_disco_l476vg.uvopt.tmpl | 211 -------- .../export/uvision4_disco_l476vg.uvproj.tmpl | 440 ----------------- .../export/uvision4_hrm1017.uvopt.tmpl | 214 -------- .../export/uvision4_hrm1017.uvproj.tmpl | 431 ----------------- .../export/uvision4_k20d50m.uvopt.tmpl | 204 -------- .../export/uvision4_k20d50m.uvproj.tmpl | 423 ---------------- .../export/uvision4_k22f.uvopt.tmpl | 187 ------- .../export/uvision4_k22f.uvproj.tmpl | 425 ---------------- .../export/uvision4_k64f.uvopt.tmpl | 187 ------- .../export/uvision4_k64f.uvproj.tmpl | 425 ---------------- .../export/uvision4_kl05z.uvopt.tmpl | 204 -------- .../export/uvision4_kl05z.uvproj.tmpl | 423 ---------------- .../export/uvision4_kl25z.uvopt.tmpl | 204 -------- .../export/uvision4_kl25z.uvproj.tmpl | 423 ---------------- .../export/uvision4_kl43z.uvopt.tmpl | 204 -------- .../export/uvision4_kl43z.uvproj.tmpl | 423 ---------------- .../export/uvision4_kl46z.uvopt.tmpl | 204 -------- .../export/uvision4_kl46z.uvproj.tmpl | 423 ---------------- .../export/uvision4_lpc1114.uvopt.tmpl | 222 --------- .../export/uvision4_lpc1114.uvproj.tmpl | 425 ---------------- .../export/uvision4_lpc11c24.uvopt.tmpl | 227 --------- .../export/uvision4_lpc11c24.uvproj.tmpl | 425 ---------------- .../export/uvision4_lpc11u24.uvopt.tmpl | 181 ------- .../export/uvision4_lpc11u24.uvproj.tmpl | 419 ---------------- .../export/uvision4_lpc11u35_401.uvopt.tmpl | 215 --------- .../export/uvision4_lpc11u35_401.uvproj.tmpl | 429 ---------------- .../export/uvision4_lpc11u35_501.uvopt.tmpl | 218 --------- .../export/uvision4_lpc11u35_501.uvproj.tmpl | 424 ---------------- .../export/uvision4_lpc11u37h_401.uvopt.tmpl | 181 ------- .../export/uvision4_lpc11u37h_401.uvproj.tmpl | 419 ---------------- .../export/uvision4_lpc11u68.uvopt.tmpl | 181 ------- .../export/uvision4_lpc11u68.uvproj.tmpl | 419 ---------------- .../export/uvision4_lpc1347.uvopt.tmpl | 204 -------- .../export/uvision4_lpc1347.uvproj.tmpl | 420 ---------------- .../export/uvision4_lpc1549.uvopt.tmpl | 223 --------- .../export/uvision4_lpc1549.uvproj.tmpl | 431 ----------------- .../export/uvision4_lpc1768.uvopt.tmpl | 201 -------- .../export/uvision4_lpc1768.uvproj.tmpl | 422 ---------------- .../export/uvision4_lpc4088.uvopt.tmpl | 230 --------- .../export/uvision4_lpc4088.uvproj.tmpl | 425 ---------------- .../export/uvision4_lpc4088_dm.uvopt.tmpl | 230 --------- .../export/uvision4_lpc4088_dm.uvproj.tmpl | 425 ---------------- .../export/uvision4_lpc4330_m4.uvopt.tmpl | 205 -------- .../export/uvision4_lpc4330_m4.uvproj.tmpl | 431 ----------------- .../export/uvision4_lpc4337.uvopt.tmpl | 205 -------- .../export/uvision4_lpc4337.uvproj.tmpl | 431 ----------------- .../export/uvision4_lpc812.uvopt.tmpl | 198 -------- .../export/uvision4_lpc812.uvproj.tmpl | 425 ---------------- .../export/uvision4_lpc824.uvopt.tmpl | 198 -------- .../export/uvision4_lpc824.uvproj.tmpl | 425 ---------------- .../export/uvision4_max32600mbed.uvopt.tmpl | 197 -------- .../export/uvision4_max32600mbed.uvproj.tmpl | 424 ---------------- .../export/uvision4_maxwsnenv.uvopt.tmpl | 197 -------- .../export/uvision4_maxwsnenv.uvproj.tmpl | 424 ---------------- .../export/uvision4_mote_l152rc.uvopt.tmpl | 218 --------- .../export/uvision4_mote_l152rc.uvproj.tmpl | 438 ----------------- .../export/uvision4_mts_gambit.uvopt.tmpl | 187 ------- .../export/uvision4_mts_gambit.uvproj.tmpl | 425 ---------------- .../uvision4_mts_mdot_f405rg.uvopt.tmpl | 181 ------- .../uvision4_mts_mdot_f405rg.uvproj.tmpl | 445 ----------------- .../export/uvision4_nrf51822.uvopt.tmpl | 214 -------- .../export/uvision4_nrf51822.uvproj.tmpl | 431 ----------------- .../export/uvision4_nrf51_dk.uvopt.tmpl | 214 -------- .../export/uvision4_nrf51_dk.uvproj.tmpl | 431 ----------------- .../export/uvision4_nrf51_dongle.uvopt.tmpl | 214 -------- .../export/uvision4_nrf51_dongle.uvproj.tmpl | 431 ----------------- .../export/uvision4_nucleo_f030r8.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_f030r8.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f031k6.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_f031k6.uvproj.tmpl | 440 ----------------- .../export/uvision4_nucleo_f042k6.uvopt.tmpl | 200 -------- .../export/uvision4_nucleo_f042k6.uvproj.tmpl | 455 ----------------- .../export/uvision4_nucleo_f070rb.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_f070rb.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f072rb.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_f072rb.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f091rc.uvopt.tmpl | 211 -------- .../export/uvision4_nucleo_f091rc.uvproj.tmpl | 448 ----------------- .../export/uvision4_nucleo_f103rb.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_f103rb.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f302r8.uvopt.tmpl | 208 -------- .../export/uvision4_nucleo_f302r8.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f303k8.uvopt.tmpl | 213 -------- .../export/uvision4_nucleo_f303k8.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f303re.uvopt.tmpl | 208 -------- .../export/uvision4_nucleo_f303re.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f334r8.uvopt.tmpl | 208 -------- .../export/uvision4_nucleo_f334r8.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f401re.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_f401re.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f410rb.uvopt.tmpl | 185 ------- .../export/uvision4_nucleo_f410rb.uvproj.tmpl | 456 ------------------ .../export/uvision4_nucleo_f411re.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_f411re.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_f446re.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_f446re.uvproj.tmpl | 440 ----------------- .../export/uvision4_nucleo_f746zg.uvopt.tmpl | 185 ------- .../export/uvision4_nucleo_f746zg.uvproj.tmpl | 446 ----------------- .../export/uvision4_nucleo_l053r8.uvopt.tmpl | 208 -------- .../export/uvision4_nucleo_l053r8.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_l073rz.uvopt.tmpl | 208 -------- .../export/uvision4_nucleo_l073rz.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_l152re.uvopt.tmpl | 218 --------- .../export/uvision4_nucleo_l152re.uvproj.tmpl | 438 ----------------- .../export/uvision4_nucleo_l476rg.uvopt.tmpl | 211 -------- .../export/uvision4_nucleo_l476rg.uvproj.tmpl | 440 ----------------- .../export/uvision4_nz32_sc151.uvopt.tmpl | 218 --------- .../export/uvision4_nz32_sc151.uvproj.tmpl | 438 ----------------- .../export/uvision4_rblab_nrf51822.uvopt.tmpl | 214 -------- .../uvision4_rblab_nrf51822.uvproj.tmpl | 431 ----------------- .../export/uvision4_samd21g18a.uvopt.tmpl | 204 -------- .../export/uvision4_samd21g18a.uvproj.tmpl | 424 ---------------- .../export/uvision4_samd21j18a.uvopt.tmpl | 204 -------- .../export/uvision4_samd21j18a.uvproj.tmpl | 424 ---------------- .../export/uvision4_saml21j18a.uvopt.tmpl | 204 -------- .../export/uvision4_saml21j18a.uvproj.tmpl | 424 ---------------- .../export/uvision4_samr21g18a.uvopt.tmpl | 204 -------- .../export/uvision4_samr21g18a.uvproj.tmpl | 424 ---------------- .../export/uvision4_seeed_tiny_ble.uvopt.tmpl | 184 ------- .../uvision4_seeed_tiny_ble.uvproj.tmpl | 431 ----------------- .../export/uvision4_ssci824.uvopt.tmpl | 198 -------- .../export/uvision4_ssci824.uvproj.tmpl | 425 ---------------- .../export/uvision4_teensy3_1.uvopt.tmpl | 204 -------- .../export/uvision4_teensy3_1.uvproj.tmpl | 423 ---------------- .../export/uvision4_ublox_c027.uvopt.tmpl | 201 -------- .../export/uvision4_ublox_c027.uvproj.tmpl | 422 ---------------- 166 files changed, 52835 deletions(-) delete mode 100644 workspace_tools/export/uvision4_arch_ble.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arch_ble.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_arch_max.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arch_max.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_arch_pro.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arch_pro.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_iotss_beid.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_iotss_beid.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m0.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m0.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m0p.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m0p.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m3.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m3.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m4.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m4.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m7.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_arm_mps2_m7.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_b96b_f446ve.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_b96b_f446ve.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_delta_dfcm_nnn40.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_delta_dfcm_nnn40.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f051r8.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f051r8.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f100rb.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f100rb.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f303vc.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f303vc.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f334c8.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f334c8.uvproj.tmpl delete mode 100755 workspace_tools/export/uvision4_disco_f407vg.uvopt.tmpl delete mode 100755 workspace_tools/export/uvision4_disco_f407vg.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f429zi.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f429zi.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f469ni.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f469ni.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f746ng.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_f746ng.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_l053c8.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_l053c8.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_l476vg.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_disco_l476vg.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_hrm1017.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_hrm1017.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_k20d50m.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_k20d50m.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_k22f.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_k22f.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_k64f.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_k64f.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_kl05z.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_kl05z.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_kl25z.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_kl25z.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_kl43z.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_kl43z.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_kl46z.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_kl46z.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc1114.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc1114.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11c24.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11c24.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u24.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u24.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u35_401.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u35_401.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u35_501.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u35_501.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u37h_401.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u37h_401.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u68.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc11u68.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc1347.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc1347.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc1549.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc1549.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc1768.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc1768.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc4088.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc4088.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc4088_dm.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc4088_dm.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc4330_m4.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc4330_m4.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc4337.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc4337.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc812.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc812.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc824.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_lpc824.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_max32600mbed.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_max32600mbed.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_maxwsnenv.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_maxwsnenv.uvproj.tmpl delete mode 100755 workspace_tools/export/uvision4_mote_l152rc.uvopt.tmpl delete mode 100755 workspace_tools/export/uvision4_mote_l152rc.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_mts_gambit.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_mts_gambit.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_mts_mdot_f405rg.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_mts_mdot_f405rg.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nrf51822.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nrf51822.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nrf51_dk.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nrf51_dk.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nrf51_dongle.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nrf51_dongle.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f030r8.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f030r8.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f031k6.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f031k6.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f042k6.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f042k6.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f070rb.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f070rb.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f072rb.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f072rb.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f091rc.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f091rc.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f103rb.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f103rb.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f302r8.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f302r8.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f303k8.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f303k8.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f303re.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f303re.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f334r8.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f334r8.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f401re.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f401re.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f410rb.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f410rb.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f411re.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f411re.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f446re.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f446re.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f746zg.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_f746zg.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_l053r8.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_l053r8.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_l073rz.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_l073rz.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_l152re.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_l152re.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_l476rg.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nucleo_l476rg.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_nz32_sc151.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_nz32_sc151.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_rblab_nrf51822.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_rblab_nrf51822.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_samd21g18a.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_samd21g18a.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_samd21j18a.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_samd21j18a.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_saml21j18a.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_saml21j18a.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_samr21g18a.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_samr21g18a.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_seeed_tiny_ble.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_seeed_tiny_ble.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_ssci824.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_ssci824.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_teensy3_1.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_teensy3_1.uvproj.tmpl delete mode 100644 workspace_tools/export/uvision4_ublox_c027.uvopt.tmpl delete mode 100644 workspace_tools/export/uvision4_ublox_c027.uvproj.tmpl diff --git a/workspace_tools/export/uvision4_arch_ble.uvopt.tmpl b/workspace_tools/export/uvision4_arch_ble.uvopt.tmpl deleted file mode 100644 index 551f334253..0000000000 --- a/workspace_tools/export/uvision4_arch_ble.uvopt.tmpl +++ /dev/null @@ -1,184 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - nRF51822AA - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U -O718 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO15 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_arch_ble.uvproj.tmpl b/workspace_tools/export/uvision4_arch_ble.uvproj.tmpl deleted file mode 100644 index 73dc07cdc6..0000000000 --- a/workspace_tools/export/uvision4_arch_ble.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - nRF51822AA - 0x4 - ARM-ADS - - - nRF51822_xxAA - Nordic Semiconductor - IROM(0x00000000,0x40000) IRAM(0x20000000,0x4000) CPUTYPE("Cortex-M0") CLOCK(16000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm)) - 0 - $$Device:nRF51xxx$Device\Include\nrf.h - - - - - - - - - - $$Device:nRF51xxx$SVD\nrf51.xml - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - mergehex -m !H {% for hex in hex_files %} {{hex}} {% endfor %} -o $H@H.hex - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 0 - 1 - 4096 - - 1 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_arch_max.uvopt.tmpl b/workspace_tools/export/uvision4_arch_max.uvopt.tmpl deleted file mode 100644 index fc8c58653f..0000000000 --- a/workspace_tools/export/uvision4_arch_max.uvopt.tmpl +++ /dev/null @@ -1,210 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - STM32F407 - 0x4 - ARM-ADS - - 25000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - - 0 - Datasheet - DATASHTS\ST\STM32F4xx\DM00037051.pdf - - - 1 - Reference Manual - DATASHTS\ST\STM32F4xx\DM00031020.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m4\r0p1\DDI0439C_CORTEX_M4_R0P1_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m4\r0p1\DUI0553A_CORTEX_M4_DGUG.PDF - - - - SARMCM3.DLL - -MPU -REMAP - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O4559 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F4xx_1024 -FS08000000 -FL0100000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 1 - 0 - 1 - 18 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_arch_max.uvproj.tmpl b/workspace_tools/export/uvision4_arch_max.uvproj.tmpl deleted file mode 100644 index 9c08d58189..0000000000 --- a/workspace_tools/export/uvision4_arch_max.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - STM32F407 - 0x4 - ARM-ADS - - - STM32F407VG - STMicroelectronics - IRAM(0x20000000-0x2001FFFF) IRAM2(0x10000000-0x1000FFFF) IROM(0x8000000-0x80FFFFF) CLOCK(25000000) CPUTYPE("Cortex-M4") FPU2 - - "Startup\ST\STM32F4xx\startup_stm32f4xx.s" ("STM32F4xx Startup Code") - UL2CM3(-O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F4xx_1024 -FS08000000 -FL0100000) - 6103 - stm32f4xx.h - - - - - - - - - - SFD\ST\STM32F4xx\STM32F40x.sfr - 0 - - - - ST\STM32F4xx\ - ST\STM32F4xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_STM32F407.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU -REMAP - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 0 - 0x10000000 - 0x10000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --any_placement=first_fit - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_arch_pro.uvopt.tmpl b/workspace_tools/export/uvision4_arch_pro.uvopt.tmpl deleted file mode 100644 index 91ca45b89c..0000000000 --- a/workspace_tools/export/uvision4_arch_pro.uvopt.tmpl +++ /dev/null @@ -1,201 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC1768 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DARMP1.DLL - -pLPC1768 - SARMCM3.DLL - -MPU - TARMP1.DLL - -pLPC1768 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O4559 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - 0 - DLGUARM - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(350=-1,-1,-1,-1,0)(250=-1,-1,-1,-1,0)(270=-1,-1,-1,-1,0)(313=-1,-1,-1,-1,0)(291=-1,-1,-1,-1,0)(302=-1,-1,-1,-1,0)(110=-1,-1,-1,-1,0)(113=-1,-1,-1,-1,0)(320=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(330=-1,-1,-1,-1,0)(332=-1,-1,-1,-1,0)(333=-1,-1,-1,-1,0)(334=-1,-1,-1,-1,0)(335=-1,-1,-1,-1,0)(336=-1,-1,-1,-1,0)(345=-1,-1,-1,-1,0)(346=-1,-1,-1,-1,0)(381=-1,-1,-1,-1,0)(382=-1,-1,-1,-1,0)(383=-1,-1,-1,-1,0)(384=-1,-1,-1,-1,0)(197=-1,-1,-1,-1,0)(198=-1,-1,-1,-1,0)(191=-1,-1,-1,-1,0)(192=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(261=-1,-1,-1,-1,0)(262=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(121=-1,-1,-1,-1,0)(122=-1,-1,-1,-1,0)(123=-1,-1,-1,-1,0)(124=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(142=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(400=-1,-1,-1,-1,0)(370=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(280=-1,-1,-1,-1,0)(240=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - UL2CM3 - -UV0218BNE -O463 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO19 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 7 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_arch_pro.uvproj.tmpl b/workspace_tools/export/uvision4_arch_pro.uvproj.tmpl deleted file mode 100644 index 6fdbbe2419..0000000000 --- a/workspace_tools/export/uvision4_arch_pro.uvproj.tmpl +++ /dev/null @@ -1,422 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC1768 - 0x4 - ARM-ADS - - - LPC1768 - NXP (founded by Philips) - IRAM(0x10000000-0x10007FFF) IRAM2(0x2007C000-0x20083FFF) IROM(0-0x7FFFF) CLOCK(12000000) CPUTYPE("Cortex-M3") - - "STARTUP\NXP\LPC17xx\startup_LPC17xx.s" ("NXP LPC17xx Startup Code") - UL2CM3(-O463 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000) - 4868 - LPC17xx.H - - - - - - - - - - 0 - - - - NXP\LPC17xx\ - NXP\LPC17xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC1768.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DARMP1.DLL - -pLPC1768 - SARMCM3.DLL - -MPU - TARMP1.DLL - -pLPC1768 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x8000 - - - 1 - 0x0 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x80000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x8000 - - - 0 - 0x2007c000 - 0x8000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_arm_iotss_beid.uvopt.tmpl b/workspace_tools/export/uvision4_arm_iotss_beid.uvopt.tmpl deleted file mode 100644 index a42d20f13a..0000000000 --- a/workspace_tools/export/uvision4_arm_iotss_beid.uvopt.tmpl +++ /dev/null @@ -1,190 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - ARM MPS2 BEID - 0x4 - ARM-ADS - - 25000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 7 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - 0 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - - - - - - - - - - - BIN\UL2CM3.DLL - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 1 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_arm_iotss_beid.uvproj.tmpl b/workspace_tools/export/uvision4_arm_iotss_beid.uvproj.tmpl deleted file mode 100644 index e5642db411..0000000000 --- a/workspace_tools/export/uvision4_arm_iotss_beid.uvproj.tmpl +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - ARM MPS2 BEID - 0x4 - ARM-ADS - - - Cortex-M3 - ARM - IROM(0x00000000,0x400000) IRAM(0x20000000,0x400000) CPUTYPE("Cortex-M3") CLOCK(25000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - 5125 - CMSDK_BEID.h - - - - - - - - - - - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 1 - 0x0 - 0x400000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x400000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 4 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - 1 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --entry=Reset_Handler - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m0.uvopt.tmpl b/workspace_tools/export/uvision4_arm_mps2_m0.uvopt.tmpl deleted file mode 100644 index deee830189..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m0.uvopt.tmpl +++ /dev/null @@ -1,190 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - ARM MPS2 M0 - 0x4 - ARM-ADS - - 25000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 7 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM0 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM0 - - - 0 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - - - - - - - - - - - BIN\UL2CM3.DLL - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 1 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m0.uvproj.tmpl b/workspace_tools/export/uvision4_arm_mps2_m0.uvproj.tmpl deleted file mode 100644 index 32da679116..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m0.uvproj.tmpl +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - ARM MPS2 M0 - 0x4 - ARM-ADS - - - Cortex-M0 - ARM - IROM(0x00000000,0x400000) IRAM(0x20000000,0x400000) CPUTYPE("Cortex-M0") CLOCK(25000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - 5125 - CMSDK_CM0.h - - - - - - - - - - - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM0 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 1 - 0x0 - 0x400000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x400000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 4 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - 1 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --entry=Reset_Handler - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m0p.uvopt.tmpl b/workspace_tools/export/uvision4_arm_mps2_m0p.uvopt.tmpl deleted file mode 100644 index 1bd0cb2076..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m0p.uvopt.tmpl +++ /dev/null @@ -1,190 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - ARM MPS2 M0P - 0x4 - ARM-ADS - - 25000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 7 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM0P - SARMCM3.DLL - -MPU - TCM.DLL - -pCM0P - - - 0 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - - - - - - - - - - - BIN\UL2CM3.DLL - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 1 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m0p.uvproj.tmpl b/workspace_tools/export/uvision4_arm_mps2_m0p.uvproj.tmpl deleted file mode 100644 index f6e934b05f..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m0p.uvproj.tmpl +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - ARM MPS2 M0P - 0x4 - ARM-ADS - - - Cortex-M0P - ARM - IROM(0x00000000,0x400000) IRAM(0x20000000,0x400000) CPUTYPE("Cortex-M0P") CLOCK(25000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - 5125 - CMSDK_CM0P.h - - - - - - - - - - - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM0P - SARMCM3.DLL - -MPU - TCM.DLL - -pCM0P - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0P" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 1 - 0x0 - 0x400000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x400000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 4 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - 1 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --entry=Reset_Handler - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m3.uvopt.tmpl b/workspace_tools/export/uvision4_arm_mps2_m3.uvopt.tmpl deleted file mode 100644 index b5a0fe5dbb..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m3.uvopt.tmpl +++ /dev/null @@ -1,190 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - ARM MPS2 M3 - 0x4 - ARM-ADS - - 25000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 7 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - 0 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - - - - - - - - - - - BIN\UL2CM3.DLL - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 1 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m3.uvproj.tmpl b/workspace_tools/export/uvision4_arm_mps2_m3.uvproj.tmpl deleted file mode 100644 index 4d874dcd82..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m3.uvproj.tmpl +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - ARM MPS2 M3 - 0x4 - ARM-ADS - - - Cortex-M3 - ARM - IROM(0x00000000,0x400000) IRAM(0x20000000,0x400000) CPUTYPE("Cortex-M3") CLOCK(25000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - 5125 - CMSDK_CM3.h - - - - - - - - - - - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 1 - 0x0 - 0x400000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x400000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 4 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - 1 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --entry=Reset_Handler - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m4.uvopt.tmpl b/workspace_tools/export/uvision4_arm_mps2_m4.uvopt.tmpl deleted file mode 100644 index 153f486d57..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m4.uvopt.tmpl +++ /dev/null @@ -1,190 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - ARM MPS2 M4 - 0x4 - ARM-ADS - - 25000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 7 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - - - - - - - - - - - BIN\UL2CM3.DLL - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 1 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m4.uvproj.tmpl b/workspace_tools/export/uvision4_arm_mps2_m4.uvproj.tmpl deleted file mode 100644 index efd8d1f6ac..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m4.uvproj.tmpl +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - ARM MPS2 M4 - 0x4 - ARM-ADS - - - Cortex-M4 - ARM - IROM(0x00000000,0x400000) IRAM(0x20000000,0x400000) CPUTYPE("Cortex-M4") CLOCK(25000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - 5125 - CMSDK_CM4.h - - - - - - - - - - - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 1 - 0x0 - 0x400000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x400000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 4 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - 1 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --entry=Reset_Handler - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m7.uvopt.tmpl b/workspace_tools/export/uvision4_arm_mps2_m7.uvopt.tmpl deleted file mode 100644 index 6504d2f403..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m7.uvopt.tmpl +++ /dev/null @@ -1,190 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - ARM MPS2 M7 - 0x4 - ARM-ADS - - 25000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 7 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - - - - - - - - - - - BIN\UL2CM3.DLL - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 1 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_arm_mps2_m7.uvproj.tmpl b/workspace_tools/export/uvision4_arm_mps2_m7.uvproj.tmpl deleted file mode 100644 index cfb747e235..0000000000 --- a/workspace_tools/export/uvision4_arm_mps2_m7.uvproj.tmpl +++ /dev/null @@ -1,428 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - ARM MPS2 M7 - 0x4 - ARM-ADS - - - Cortex-M7 - ARM - IROM(0x00000000,0x400000) IRAM(0x20000000,0x400000) CPUTYPE("Cortex-M7") CLOCK(25000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000) - 5125 - CMSDK_CM7.h - - - - - - - - - - - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM7 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM7 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M7" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 1 - 0x0 - 0x400000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x400000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x400000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 4 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - 1 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --entry=Reset_Handler - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_b96b_f446ve.uvopt.tmpl b/workspace_tools/export/uvision4_b96b_f446ve.uvopt.tmpl deleted file mode 100644 index 7a5c6d2439..0000000000 --- a/workspace_tools/export/uvision4_b96b_f446ve.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed B96B_F446VE - 0x4 - ARM-ADS - - 84000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_512 -FS08000000 -FL080000 - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F401RC$Flash\STM32F4xx_256.FLM)) - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_b96b_f446ve.uvproj.tmpl b/workspace_tools/export/uvision4_b96b_f446ve.uvproj.tmpl deleted file mode 100644 index c6c660854f..0000000000 --- a/workspace_tools/export/uvision4_b96b_f446ve.uvproj.tmpl +++ /dev/null @@ -1,440 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed B96B_F446VE - 0x4 - ARM-ADS - - - STM32F446VETx - STMicroelectronics - Keil.STM32F4xx_DFP.2.5.0 - http://www.keil.com/pack - IROM(0x08000000,0x80000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_512 -FS08000000 -FL080000 -FP0($$Device:STM32F446VETx$CMSIS\Flash\STM32F4xx_512.FLM)) - 0 - $$Device:STM32F446VETx$Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - - - - - - - - - - $$Device:STM32F446VETx$CMSIS\SVD\STM32F446x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_B96B_F446VE.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 1 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 1 - 0x8000000 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x80000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_delta_dfcm_nnn40.uvopt.tmpl b/workspace_tools/export/uvision4_delta_dfcm_nnn40.uvopt.tmpl deleted file mode 100644 index 2d8cbbceb0..0000000000 --- a/workspace_tools/export/uvision4_delta_dfcm_nnn40.uvopt.tmpl +++ /dev/null @@ -1,214 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - nRF51822AA - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 12 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - JL2CM3 - -U480204337 -O78 -S0 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51$Flash\nrf51xxx.flm)) - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U107002011FE6E019E2180F91 -O718 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_delta_dfcm_nnn40.uvproj.tmpl b/workspace_tools/export/uvision4_delta_dfcm_nnn40.uvproj.tmpl deleted file mode 100644 index 713e1412bd..0000000000 --- a/workspace_tools/export/uvision4_delta_dfcm_nnn40.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - nRF51822AA - 0x4 - ARM-ADS - - - nRF51xxx - Nordic Semiconductor - IROM(0x00000000,0x40000) IRAM(0x20000000,0x4000) CPUTYPE("Cortex-M0") CLOCK(16000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm)) - 0 - $$Device:nRF51xxx$Device\Include\nrf.h - - - - - - - - - - $$Device:nRF51xxx$SVD\nrf51.xml - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 0 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_f051r8.uvopt.tmpl b/workspace_tools/export/uvision4_disco_f051r8.uvopt.tmpl deleted file mode 100644 index 35e8f55a62..0000000000 --- a/workspace_tools/export/uvision4_disco_f051r8.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed DISCO_F051R8 - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - -MPU - TARMCM1.DLL - -pCM0+ - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ULP2CM3 - -O207 -S8 -C0 -FO7 -F2000 -FN1 -FD20000000 -FF0STM32L0xx_64 -FL020000 -FS08000000 - - - 0 - ST-LINKIII-KEIL_SWO - -U-O207 -O207 -S8 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L0x_64 -FS08000000 -FL010000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_f051r8.uvproj.tmpl b/workspace_tools/export/uvision4_disco_f051r8.uvproj.tmpl deleted file mode 100644 index a100238f68..0000000000 --- a/workspace_tools/export/uvision4_disco_f051r8.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed DISCO_F051R8 - 0x4 - ARM-ADS - - - STM32F051R8 - STMicroelectronics - IRAM(0x20000000-0x20002000) IROM(0x8000000-0x8010000) CLOCK(8000000) CPUTYPE("Cortex-M0+") - - - ULP2CM3(-O207 -S8 -C0 -FO7 -FD20000000 -F2000 -FN1 -FF0STM32L0xx_64 -FS08000000 -FL020000) - 0 - - - - - - - - - - - - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_DISCO_F051R8.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -MPU - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - -MPU - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4100 - - 1 - BIN\ULP2CM3.DLL - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 1 - 0x8000000 - 0x10000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x10000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_f100rb.uvopt.tmpl b/workspace_tools/export/uvision4_disco_f100rb.uvopt.tmpl deleted file mode 100644 index 2fcd2e7cd4..0000000000 --- a/workspace_tools/export/uvision4_disco_f100rb.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed DISCO_F100RB - 0x4 - ARM-ADS - - 24000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - - DARMSTM.DLL - -pSTM32F100RB - SARMCM3.DLL - - TARMSTM.DLL - -pSTM32F100RB - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(100=-1,-1,-1,-1,0)(110=-1,-1,-1,-1,0)(111=-1,-1,-1,-1,0)(1011=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(120=-1,-1,-1,-1,0)(121=-1,-1,-1,-1,0)(122=-1,-1,-1,-1,0)(123=-1,-1,-1,-1,0)(140=-1,-1,-1,-1,0)(240=-1,-1,-1,-1,0)(190=-1,-1,-1,-1,0)(200=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(130=-1,-1,-1,-1,0)(131=-1,-1,-1,-1,0)(132=-1,-1,-1,-1,0)(133=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(161=-1,-1,-1,-1,0)(162=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(211=-1,-1,-1,-1,0)(220=-1,-1,-1,-1,0)(221=-1,-1,-1,-1,0)(230=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(151=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S3 -C0 -N00("ARM CoreSight SW-DP") -D00(1BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F10x_128 -FS08000000 -FL020000 - - - 0 - UL2CM3 - UL2CM3(-O14 -S0 -C0 -N00("ARM Cortex-M3") -D00(1BA00477) -L00(4) -FO7 -FN1 -FC800 -FD20000000 -FF0STM32F10x_128 -FL020000 -FS08000000 - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_f100rb.uvproj.tmpl b/workspace_tools/export/uvision4_disco_f100rb.uvproj.tmpl deleted file mode 100644 index bc1310e240..0000000000 --- a/workspace_tools/export/uvision4_disco_f100rb.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed DISCO_F100RB - 0x4 - ARM-ADS - - - STM32F100RB - STMicroelectronics - IRAM(0x20000000-0x20002000) IROM(0x8000000-0x8020000) CLOCK(24000000) CPUTYPE("Cortex-M3") - - "STARTUP\ST\STM32F10x\startup_stm32f10x_md.s" ("STM32 Medium Density Line Startup Code") - UL2CM3(-O14 -S0 -C0 -N00("ARM Cortex-M3") -D00(1BA00477) -L00(4) -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F10x_128 -FS08000000 -FL020000) - 4231 - stm32f10x.h - - - - - - - - - - SFD\ST\STM32F1xx\STM32F100xx.sfr - 0 - 0 - - - - ST\STM32F10x\ - ST\STM32F10x\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_DISCO_F100RB.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMSTM.DLL - -pSTM32F100RB - SARMCM3.DLL - - TARMSTM.DLL - -pSTM32F100RB - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x5000 - - - 1 - 0x8000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x5000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_f303vc.uvopt.tmpl b/workspace_tools/export/uvision4_disco_f303vc.uvopt.tmpl deleted file mode 100644 index eb86f7710d..0000000000 --- a/workspace_tools/export/uvision4_disco_f303vc.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed DISCO_F303VC - 0x4 - ARM-ADS - - 72000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S3 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL040000 - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32F3xx_256 -FL040000 -FS08000000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_f303vc.uvproj.tmpl b/workspace_tools/export/uvision4_disco_f303vc.uvproj.tmpl deleted file mode 100644 index 540f484146..0000000000 --- a/workspace_tools/export/uvision4_disco_f303vc.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed DISCO_F303VC - 0x4 - ARM-ADS - - - STM32F303VC - STMicroelectronics - IROM(0x08000000,0x20000) IRAM(0x20000000,0xC000) CPUTYPE("Cortex-M4") FPU2 CLOCK(72000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM)) - 6576 - $$Device:STM32F302RC$Device\Include\STM32F30x.h - - - - - - - - - - $$Device:STM32F302RC$SVD\STM32F30x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_DISCO_F303VC.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x8000000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_f334c8.uvopt.tmpl b/workspace_tools/export/uvision4_disco_f334c8.uvopt.tmpl deleted file mode 100644 index 9f37a88940..0000000000 --- a/workspace_tools/export/uvision4_disco_f334c8.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed DISCO_F334C8 - 0x4 - ARM-ADS - - 72000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U -O206 -S3 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F3xx_256.FLM -FS08000000 -FL040000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM) - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32F3xx_256 -FL040000 -FS08000000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_f334c8.uvproj.tmpl b/workspace_tools/export/uvision4_disco_f334c8.uvproj.tmpl deleted file mode 100644 index 5651bac46c..0000000000 --- a/workspace_tools/export/uvision4_disco_f334c8.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed DISCO_F334C8 - 0x4 - ARM-ADS - - - STM32F334C8 - STMicroelectronics - IROM(0x08000000,0x40000) IRAM(0x20000000,0x8000) CPUTYPE("Cortex-M4") FPU2 CLOCK(72000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM)) - 6576 - $$Device:STM32F302RC$Device\Include\STM32F30x.h - - - - - - - - - - $$Device:STM32F302RC$SVD\STM32F30x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - fromelf --bin -o build\{{name}}_DISCO_F334C8.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x8000000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_f407vg.uvopt.tmpl b/workspace_tools/export/uvision4_disco_f407vg.uvopt.tmpl deleted file mode 100755 index a06e97f05e..0000000000 --- a/workspace_tools/export/uvision4_disco_f407vg.uvopt.tmpl +++ /dev/null @@ -1,210 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - STM32F407 - 0x4 - ARM-ADS - - 168000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - - 0 - Datasheet - DATASHTS\ST\STM32F4xx\DM00037051.pdf - - - 1 - Reference Manual - DATASHTS\ST\STM32F4xx\DM00031020.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m4\r0p1\DDI0439C_CORTEX_M4_R0P1_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m4\r0p1\DUI0553A_CORTEX_M4_DGUG.PDF - - - - SARMCM3.DLL - -MPU -REMAP - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O4559 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F4xx_1024 -FS08000000 -FL0100000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 1 - 0 - 1 - 18 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_f407vg.uvproj.tmpl b/workspace_tools/export/uvision4_disco_f407vg.uvproj.tmpl deleted file mode 100755 index 74465724c1..0000000000 --- a/workspace_tools/export/uvision4_disco_f407vg.uvproj.tmpl +++ /dev/null @@ -1,430 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - STM32F407 - 0x4 - ARM-ADS - - - STM32F407VG - STMicroelectronics - IRAM(0x20000000-0x2001FFFF) IRAM2(0x10000000-0x1000FFFF) IROM(0x8000000-0x80FFFFF) CLOCK(168000000) CPUTYPE("Cortex-M4") FPU2 - - "Startup\ST\STM32F4xx\startup_stm32f4xx.s" ("STM32F4xx Startup Code") - UL2CM3(-O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F4xx_1024 -FS08000000 -FL0100000) - 6103 - stm32f4xx.h - - - - - - - - - - SFD\ST\STM32F4xx\STM32F40x.sfr - 0 - - - - ST\STM32F4xx\ - ST\STM32F4xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_STM32F407.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU -REMAP - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 0 - 0x10000000 - 0x10000 - - - - - - 1 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --any_placement=first_fit - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_f429zi.uvopt.tmpl b/workspace_tools/export/uvision4_disco_f429zi.uvopt.tmpl deleted file mode 100644 index 04f6064246..0000000000 --- a/workspace_tools/export/uvision4_disco_f429zi.uvopt.tmpl +++ /dev/null @@ -1,188 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed DISCO_F429ZI - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -MPU -REMAP - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O4559 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F4xx_1024 -FS08000000 -FL0100000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 1 - 0 - 1 - 18 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_f429zi.uvproj.tmpl b/workspace_tools/export/uvision4_disco_f429zi.uvproj.tmpl deleted file mode 100644 index c176ac827a..0000000000 --- a/workspace_tools/export/uvision4_disco_f429zi.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed DISCO_F429ZI - 0x4 - ARM-ADS - - - STM32F429ZI - STMicroelectronics - IROM(0x08000000,0x100000) IRAM(0x20000000,0x18000) CPUTYPE("Cortex-M4") FPU2 CLOCK(8000000) ELITTLE - - "Startup\ST\STM32F4xx\startup_stm32f4xx.s" ("STM32F4xx Startup Code") - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx -FS08000000 -FL0100000 -FP0($$Device:STM32F429ZI$Flash\STM32F4xx.FLM)) - 0 - stm32f4xx.h - - - - - - - - - - SFD\ST\STM32F4xx\STM32F42x.sfr - 0 - - - - ST\STM32F4xx\ - ST\STM32F4xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_DISCO_F429ZI.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU -REMAP - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x18000 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x18000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --any_placement=first_fit - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_f469ni.uvopt.tmpl b/workspace_tools/export/uvision4_disco_f469ni.uvopt.tmpl deleted file mode 100644 index 11fb558708..0000000000 --- a/workspace_tools/export/uvision4_disco_f469ni.uvopt.tmpl +++ /dev/null @@ -1,205 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - 0 - - - - 0 - 0 - - - - mbed_DISCO_F469NI - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 0 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 18 - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - ARMRTXEVENTFLAGS - -L70 -Z18 -C0 -M0 -T1 - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U066FFF485149874987105040 -O206 -S1 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_2048.FLM -FS08000000 -FL0200000 -FP0($$Device:STM32F469NIHx$CMSIS\Flash\STM32F4xx_2048.FLM) - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 ) -FN2 -FC1000 -FD20000000 -FF0STM32F4xx_2048 -FF1STM32F469_Quad_SPI -FL0200000 -FL12000000 -FS08000000 -FS190000000 -FP0($$Device:STM32F469NIHx$CMSIS\Flash\STM32F4xx_2048.FLM) -FP1($$Device:STM32F469NIHx$CMSIS\Flash\STM32F469_Quad_SPI.FLM) - - - - - 0 - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - 0 - - - - - src - 0 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_f469ni.uvproj.tmpl b/workspace_tools/export/uvision4_disco_f469ni.uvproj.tmpl deleted file mode 100644 index 72c88c499b..0000000000 --- a/workspace_tools/export/uvision4_disco_f469ni.uvproj.tmpl +++ /dev/null @@ -1,455 +0,0 @@ - - - - 2.1 - -
### uVision Project, (C) Keil Software
- - - - mbed_DISCO_F469NI - 0x4 - ARM-ADS - 5060020::V5.06 (build 20)::ARMCC - - - STM32F469NIHx - STMicroelectronics - Keil.STM32F4xx_DFP.2.3.7 - http://www.keil.com/pack - IROM(0x08000000,0x200000) IRAM(0x20000000,0x50000) IRAM2(0x10000000,0x10000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN2 -FF0STM32F4xx_2048 -FS08000000 -FL0200000 -FF1STM32F469_Quad_SPI -FS190000000 -FL12000000 -FP0($$Device:STM32F469NIHx$CMSIS\Flash\STM32F4xx_2048.FLM) -FP1($$Device:STM32F469NIHx$CMSIS\Flash\STM32F469_Quad_SPI.FLM)) - 0 - $$Device:STM32F469NIHx$Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - - - - - - - - - - - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F302R8.bin build\{{name}}.axf - - 0 - 0 - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 1 - 0 - 8 - 1 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x50000 - - - 1 - 0x8000000 - 0x200000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x200000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x50000 - - - 0 - 0x10000000 - 0x10000 - - - - - - 1 - 1 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_f746ng.uvopt.tmpl b/workspace_tools/export/uvision4_disco_f746ng.uvopt.tmpl deleted file mode 100644 index 5389c7a386..0000000000 --- a/workspace_tools/export/uvision4_disco_f746ng.uvopt.tmpl +++ /dev/null @@ -1,185 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - 0 - - - - 0 - 0 - - - - STM32F746NG - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 0 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 18 - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN2 -FF0STM32F7x_1024 -FS08000000 -FL0100000 -FF1STM32F7x_TCM -FS1200000 -FL1100000 -FP0($$Device:STM32F756IG$Flash\STM32F7x_1024.FLM) -FP1($$Device:STM32F756IG$Flash\STM32F7x_TCM.FLM)) - - - 0 - ST-LINKIII-KEIL_SWO - -U066EFF535651727067055449 -O2254 -S0 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(5BA02477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F7x_1024 -FS08000000 -FL0100000 -FP0($$Device:STM32F746NG$CMSIS\Flash\STM32F7x_1024.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - 0 - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 1 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_f746ng.uvproj.tmpl b/workspace_tools/export/uvision4_disco_f746ng.uvproj.tmpl deleted file mode 100644 index 8b7167b049..0000000000 --- a/workspace_tools/export/uvision4_disco_f746ng.uvproj.tmpl +++ /dev/null @@ -1,446 +0,0 @@ - - - - 2.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - STM32F746NG - 0x4 - ARM-ADS - - - STM32F746NG - STMicroelectronics - Keil.STM32F7xx_DFP.1.0.0 - http://www.keil.com/pack - IROM(0x08000000-0x080FFFFF) IRAM(0x20000000-0x2004FFFF) CPUTYPE("Cortex-M7") FPU3(SFPU) CLOCK(12000000) ELITTLE - - - - - - - - - - - - - - - $$Device:STM32F756IG$CMSIS\SVD\STM32F7x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_STM32F746NG.bin build\{{name}}.axf - - 0 - 0 - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 0 - - - SARMCM3.DLL - -REMAP - DCM.DLL - -pCM7 - SARMCM3.DLL - - TCM.DLL - -pCM7 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4107 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M7" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x50000 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x50000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --any_placement=first_fit - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_l053c8.uvopt.tmpl b/workspace_tools/export/uvision4_disco_l053c8.uvopt.tmpl deleted file mode 100644 index 36686cc10a..0000000000 --- a/workspace_tools/export/uvision4_disco_l053c8.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed DISCO_L053C8 - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - -MPU - TARMCM1.DLL - -pCM0+ - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ULP2CM3 - -O207 -S8 -C0 -FO7 -F2000 -FN1 -FD20000000 -FF0STM32L0xx_64 -FL020000 -FS08000000 - - - 0 - ST-LINKIII-KEIL_SWO - -U-O207 -O207 -S8 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L0x_64 -FS08000000 -FL010000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_l053c8.uvproj.tmpl b/workspace_tools/export/uvision4_disco_l053c8.uvproj.tmpl deleted file mode 100644 index a78fdaf185..0000000000 --- a/workspace_tools/export/uvision4_disco_l053c8.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed DISCO_L053C8 - 0x4 - ARM-ADS - - - STM32L053C8 - STMicroelectronics - IRAM(0x20000000-0x20001FFF) IROM(0x8000000-0x800FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") - - - ULP2CM3(-O207 -S8 -C0 -FO7 -FD20000000 -F2000 -FN1 -FF0STM32L0xx_64 -FS08000000 -FL020000) - 0 - - - - - - - - - - - - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_DISCO_L053C8.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -MPU - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - -MPU - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4100 - - 1 - BIN\ULP2CM3.DLL - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 1 - 0x8000000 - 0x10000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x10000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_disco_l476vg.uvopt.tmpl b/workspace_tools/export/uvision4_disco_l476vg.uvopt.tmpl deleted file mode 100644 index ce4d23763a..0000000000 --- a/workspace_tools/export/uvision4_disco_l476vg.uvopt.tmpl +++ /dev/null @@ -1,211 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed DISCO_L476VG - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U0672FF535157876667210741 -O2287 -S0 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32L4xx_1024 -FS08000000 -FL0100000 -FP0($$Device:STM32L476VG$Flash\STM32L4xx_1024.FLM) - - - 0 - UL2CM3 - -S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32L4xx -FL0100000 -FS08000000 -FP0($$Device:STM32L476VG$Flash\STM32L4xx.FLM) - - - 0 - ULP2CM3 - -U -O207 -S8 -C0 -P00 -TO18 -TC10000000 -TP18 -TDX0 -TDD0 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_disco_l476vg.uvproj.tmpl b/workspace_tools/export/uvision4_disco_l476vg.uvproj.tmpl deleted file mode 100644 index c773e05fce..0000000000 --- a/workspace_tools/export/uvision4_disco_l476vg.uvproj.tmpl +++ /dev/null @@ -1,440 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed DISCO_L476VG - 0x4 - ARM-ADS - - - STM32L476VG - STMicroelectronics - Keil.STM32L4xx_DFP.1.0.0 - http://www.keil.com/pack - IROM(0x08000000,0x100000) IRAM(0x20000000,0x18000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32L4xx -FS08000000 -FL0100000 -FP0($$Device:STM32L476VG$Flash\STM32L4xx.FLM)) - 0 - $$Device:STM32L476VG$Device\Include\stm32l4xx.h - - - - - - - - - - $$Device:STM32L476VG$SVD\STM32L4x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_DISCO_L476VG.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x18000 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x18000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_hrm1017.uvopt.tmpl b/workspace_tools/export/uvision4_hrm1017.uvopt.tmpl deleted file mode 100644 index b58cb01b3e..0000000000 --- a/workspace_tools/export/uvision4_hrm1017.uvopt.tmpl +++ /dev/null @@ -1,214 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - nRF51822AA - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 12 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - JL2CM3 - -U480204337 -O78 -S0 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51$Flash\nrf51xxx.flm)) - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U107002011FE6E019E2180F91 -O718 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO31 -FD20000000 -FC800 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_hrm1017.uvproj.tmpl b/workspace_tools/export/uvision4_hrm1017.uvproj.tmpl deleted file mode 100644 index 713e1412bd..0000000000 --- a/workspace_tools/export/uvision4_hrm1017.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - nRF51822AA - 0x4 - ARM-ADS - - - nRF51xxx - Nordic Semiconductor - IROM(0x00000000,0x40000) IRAM(0x20000000,0x4000) CPUTYPE("Cortex-M0") CLOCK(16000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm)) - 0 - $$Device:nRF51xxx$Device\Include\nrf.h - - - - - - - - - - $$Device:nRF51xxx$SVD\nrf51.xml - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 0 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_k20d50m.uvopt.tmpl b/workspace_tools/export/uvision4_k20d50m.uvopt.tmpl deleted file mode 100644 index 674bc63d41..0000000000 --- a/workspace_tools/export/uvision4_k20d50m.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed FRDM-K20D5M - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 14 - - - 0 - Data Sheet - DATASHTS\Freescale\K20PB.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m4\r0p1\DDI0439C_CORTEX_M4_R0P1_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m4\r0p1\DUI0553A_CORTEX_M4_DGUG.PDF - - - - SARMCM3.DLL - - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_50MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_50MHZ -FS00 -FL020000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_k20d50m.uvproj.tmpl b/workspace_tools/export/uvision4_k20d50m.uvproj.tmpl deleted file mode 100644 index 5e5ff5a55d..0000000000 --- a/workspace_tools/export/uvision4_k20d50m.uvproj.tmpl +++ /dev/null @@ -1,423 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed FRDM-K20D5M - 0x4 - ARM-ADS - - - MK20DN128xxx5 - Freescale Semiconductor - IRAM(0x1FFFE000-0x1FFFFFFF) IRAM2(0x20000000-0x20001FFF) IROM(0x0-0x1FFFF) CLOCK(12000000) CPUTYPE("Cortex-M4") ELITTLE - - "STARTUP\Freescale\Kinetis\startup_MK20D5.s" ("Freescale MK20Xxxxxxx5 Startup Code") - ULP2CM3(-O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_50MHZ -FS00 -FL020000) - 6212 - MK20D5.H - - - - - - - - - - SFD\Freescale\Kinetis\MK20D5.sfr - 0 - - - - Freescale\Kinetis\ - Freescale\Kinetis\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_K20D5M.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fffe000 - 0x2000 - - - 1 - 0x0 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fffe000 - 0x2000 - - - 0 - 0x20000000 - 0x2000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_k22f.uvopt.tmpl b/workspace_tools/export/uvision4_k22f.uvopt.tmpl deleted file mode 100644 index 531b5525bd..0000000000 --- a/workspace_tools/export/uvision4_k22f.uvopt.tmpl +++ /dev/null @@ -1,187 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed FRDM-K22F - 0x4 - ARM-ADS - - 12000000 - - 0 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U024002014C482E7AB1B6D3C2 -O2510 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD20000000 -FC4000 -FN1 -FF0MK_P1M0 -FS00 -FL0100000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_k22f.uvproj.tmpl b/workspace_tools/export/uvision4_k22f.uvproj.tmpl deleted file mode 100644 index f814662e37..0000000000 --- a/workspace_tools/export/uvision4_k22f.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed FRDM-K22F - 0x4 - ARM-ADS - - - MK22FN512xxx12 - Freescale Semiconductor - IROM(0x00000000,0x80000) IRAM(0x20000000,0x10000) IRAM2(0x1FFF0000,0x10000) CPUTYPE("Cortex-M4") FPU2 CLOCK(120000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0MK_P512 -FS00 -FL080000 -FP0($$Device:MK22FN512xxx12$Flash\MK_P512.FLM)) - 0 - $$Device:MK22FN512xxx12$Device\Include\MK22F51212.h - - - - - - - - - - $$Device:MK22FN512xxx12$SVD\MK22F51212.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_K22F.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 13 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4104 - - 0 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fff0000 - 0x10000 - - - 1 - 0x0 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x80000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x10000 - - - 0 - 0x1fff0000 - 0x10000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} --pch --pch_dir=build - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_k64f.uvopt.tmpl b/workspace_tools/export/uvision4_k64f.uvopt.tmpl deleted file mode 100644 index 1e7e6cff08..0000000000 --- a/workspace_tools/export/uvision4_k64f.uvopt.tmpl +++ /dev/null @@ -1,187 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed FRDM-K64F - 0x4 - ARM-ADS - - 12000000 - - 0 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U024002014C482E7AB1B6D3C2 -O2510 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD20000000 -FC4000 -FN1 -FF0MK_P1M0 -FS00 -FL0100000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_k64f.uvproj.tmpl b/workspace_tools/export/uvision4_k64f.uvproj.tmpl deleted file mode 100644 index 25923318b9..0000000000 --- a/workspace_tools/export/uvision4_k64f.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed FRDM-K64F - 0x4 - ARM-ADS - - - MK64FN1M0xxx12 - Freescale Semiconductor - IROM(0x00000000,0x100000) IRAM(0x20000000,0x30000) IRAM2(0x1FFF0000,0x10000) CPUTYPE("Cortex-M4") FPU2 CLOCK(120000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0MK_P1M0 -FS00 -FL0100000 -FP0($$Device:MK64FN1M0xxx12$Flash\MK_P1M0.FLM)) - 7425 - $$Device:MK64FN1M0xxx12$Device\Include\MK64F12.h - - - - - - - - - - $$Device:MK64FN1M0xxx12$SVD\MK64F12.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_K64F.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 13 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4104 - - 0 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fff0000 - 0x10000 - - - 1 - 0x0 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fff0000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} --pch --pch_dir=build - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_kl05z.uvopt.tmpl b/workspace_tools/export/uvision4_kl05z.uvopt.tmpl deleted file mode 100644 index 6eb495bc9d..0000000000 --- a/workspace_tools/export/uvision4_kl05z.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed FRDM-KL05Z - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 14 - - - 0 - Data Sheet - DATASHTS\Freescale\KL05PB.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P32_48MHZ -FS00 -FL008000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P32_48MHZ -FS00 -FL08000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_kl05z.uvproj.tmpl b/workspace_tools/export/uvision4_kl05z.uvproj.tmpl deleted file mode 100644 index d167d31fa5..0000000000 --- a/workspace_tools/export/uvision4_kl05z.uvproj.tmpl +++ /dev/null @@ -1,423 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed FRDM-KL05Z - 0x4 - ARM-ADS - - - MKL05Z32xxx4 - Freescale Semiconductor - IRAM(0x1FFFFC00-0x1FFFFFFF) IRAM2(0x20000000-0x20000BFF) IROM(0x0-0x07FFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") ELITTLE - - "STARTUP\Freescale\Kinetis\startup_MKL05Z4.s" ("Freescale MKL05Zxxxxxx4 Startup Code") - ULP2CM3(-O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P32_48MHZ -FS00 -FL08000) - 6544 - MKL05Z4.H - - - - - - - - - - SFD\Freescale\Kinetis\MKL05Z4.sfr - 0 - - - - Freescale\Kinetis\ - Freescale\Kinetis\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_KL05Z.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1ffffc00 - 0x400 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1ffffc00 - 0x400 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_kl25z.uvopt.tmpl b/workspace_tools/export/uvision4_kl25z.uvopt.tmpl deleted file mode 100644 index 827f79cda4..0000000000 --- a/workspace_tools/export/uvision4_kl25z.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed FRDM-KL25Z - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 14 - - - 0 - Data Sheet - DATASHTS\Freescale\K20PB.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_kl25z.uvproj.tmpl b/workspace_tools/export/uvision4_kl25z.uvproj.tmpl deleted file mode 100644 index 9aebfa0070..0000000000 --- a/workspace_tools/export/uvision4_kl25z.uvproj.tmpl +++ /dev/null @@ -1,423 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed FRDM-KL25Z - 0x4 - ARM-ADS - - - MKL25Z128xxx4 - Freescale Semiconductor - IRAM(0x1FFFF000-0x1FFFFFFF) IRAM2(0x20000000-0x20002FFF) IROM(0x0-0x1FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") ELITTLE - - "STARTUP\Freescale\Kinetis\startup_MKL25Z4.s" ("Freescale MKL25Zxxxxxx4 Startup Code") - ULP2CM3(-O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) - 6533 - MKL25Z4.H - - - - - - - - - - SFD\Freescale\Kinetis\MKL25Z4.sfr - 0 - - - - Freescale\Kinetis\ - Freescale\Kinetis\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_KL25Z.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1ffff000 - 0x1000 - - - 1 - 0x0 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x3000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_kl43z.uvopt.tmpl b/workspace_tools/export/uvision4_kl43z.uvopt.tmpl deleted file mode 100644 index 6992de0043..0000000000 --- a/workspace_tools/export/uvision4_kl43z.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed FRDM-KL43Z - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 14 - - - 0 - Data Sheet - DATASHTS\Freescale\K40PB.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_kl43z.uvproj.tmpl b/workspace_tools/export/uvision4_kl43z.uvproj.tmpl deleted file mode 100644 index 284814a105..0000000000 --- a/workspace_tools/export/uvision4_kl43z.uvproj.tmpl +++ /dev/null @@ -1,423 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed FRDM-KL43Z - 0x4 - ARM-ADS - - - MKL43Z256xxx4 - Freescale Semiconductor - IRAM(0x1FFFE000-0x1FFFFFFF) IRAM2(0x20000000-0x20005FFF) IROM(0x0-0x3FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") ELITTLE - - "STARTUP\Freescale\Kinetis\startup_MKL43Z4.s" ("Freescale MKL43Zxxxxxx4 Startup Code") - UL2CM3(-O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000) - 6834 - MKL43Z4.H - - - - - - - - - - SFD\Freescale\Kinetis\MKL43Z4.sfr - 0 - - - - Freescale\Kinetis\ - Freescale\Kinetis\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_KL25Z.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1ffff000 - 0x1000 - - - 1 - 0x0 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fffe000 - 0x2000 - - - 0 - 0x20000000 - 0x6000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_kl46z.uvopt.tmpl b/workspace_tools/export/uvision4_kl46z.uvopt.tmpl deleted file mode 100644 index 9f962f7887..0000000000 --- a/workspace_tools/export/uvision4_kl46z.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed FRDM-KL46Z - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 14 - - - 0 - Data Sheet - DATASHTS\Freescale\K40PB.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_kl46z.uvproj.tmpl b/workspace_tools/export/uvision4_kl46z.uvproj.tmpl deleted file mode 100644 index e0b055d92f..0000000000 --- a/workspace_tools/export/uvision4_kl46z.uvproj.tmpl +++ /dev/null @@ -1,423 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed FRDM-KL46Z - 0x4 - ARM-ADS - - - MKL46Z256xxx4 - Freescale Semiconductor - IRAM(0x1FFFE000-0x1FFFFFFF) IRAM2(0x20000000-0x20005FFF) IROM(0x0-0x3FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") ELITTLE - - "STARTUP\Freescale\Kinetis\startup_MKL46Z4.s" ("Freescale MKL46Zxxxxxx4 Startup Code") - UL2CM3(-O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000) - 6834 - MKL46Z4.H - - - - - - - - - - SFD\Freescale\Kinetis\MKL46Z4.sfr - 0 - - - - Freescale\Kinetis\ - Freescale\Kinetis\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_KL25Z.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1ffff000 - 0x1000 - - - 1 - 0x0 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fffe000 - 0x2000 - - - 0 - 0x20000000 - 0x6000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc1114.uvopt.tmpl b/workspace_tools/export/uvision4_lpc1114.uvopt.tmpl deleted file mode 100644 index ba241df1f0..0000000000 --- a/workspace_tools/export/uvision4_lpc1114.uvopt.tmpl +++ /dev/null @@ -1,222 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC1114 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC11xx\LPC111x_DS.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC11xx\LPC111x_LPC11Cxx_UM.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m0\r0p0\DDI0432C_CORTEX_M0_R0P0_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m0\r0p0\DUI0497A_CORTEX_M0_R0P0_GENERIC_UG.PDF - - - - SARMCM3.DLL - - DARMP1.DLL - -pLPC1114 - SARMCM3.DLL - - TARMP1.DLL - -pLPC1114 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - - - - - - - - - - - BIN\UL2CM3.DLL - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(220=-1,-1,-1,-1,0)(250=-1,-1,-1,-1,0)(450=-1,-1,-1,-1,0)(311=-1,-1,-1,-1,0)(420=-1,-1,-1,-1,0)(421=-1,-1,-1,-1,0)(422=-1,-1,-1,-1,0)(107=-1,-1,-1,-1,0)(440=-1,-1,-1,-1,0)(431=-1,-1,-1,-1,0)(433=-1,-1,-1,-1,0)(434=-1,-1,-1,-1,0)(301=-1,-1,-1,-1,0)(470=-1,-1,-1,-1,0)(460=-1,-1,-1,-1,0)(321=-1,-1,-1,-1,0)(500=-1,-1,-1,-1,0)(511=-1,-1,-1,-1,0)(480=-1,-1,-1,-1,0)(490=-1,-1,-1,-1,0)(360=-1,-1,-1,-1,0)(339=-1,-1,-1,-1,0)(340=-1,-1,-1,-1,0)(341=-1,-1,-1,-1,0)(342=-1,-1,-1,-1,0)(381=-1,-1,-1,-1,0)(261=-1,-1,-1,-1,0)(262=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(126=-1,-1,-1,-1,0)(127=-1,-1,-1,-1,0)(130=-1,-1,-1,-1,0)(131=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(280=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - UL2CM3 - -UV0100LBE -O4303 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000 - - - - - 0 - - - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 7 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc1114.uvproj.tmpl b/workspace_tools/export/uvision4_lpc1114.uvproj.tmpl deleted file mode 100644 index be9df69956..0000000000 --- a/workspace_tools/export/uvision4_lpc1114.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC1114 - 0x4 - ARM-ADS - - - LPC1114/102 - NXP (founded by Philips) - IRAM(0x10000000-0x10000FFF) IROM(0-0x7FFF) CLOCK(12000000) CPUTYPE("Cortex-M0") - - "STARTUP\NXP\LPC11xx\startup_LPC11xx.s" ("NXP LPC11xx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000) - 6526 - LPC11xx.h - - - - - - - - - - SFD\NXP\LPC11xx\LPC111x.sfr - 0 - - - - NXP\LPC11xx\ - NXP\LPC11xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 1 - $K\ARM\BIN\ELFDWT.EXE "!L" - fromelf --bin -o {{name}}_LPC1114.bin build\{{name}}.axf - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMP1.DLL - -pLPC1114 - SARMCM3.DLL - - TARMP1.DLL - -pLPC1114 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 0 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 0 - -1 - - 1 - BIN\UL2CM3.DLL - - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 1 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc11c24.uvopt.tmpl b/workspace_tools/export/uvision4_lpc11c24.uvopt.tmpl deleted file mode 100644 index a559c54493..0000000000 --- a/workspace_tools/export/uvision4_lpc11c24.uvopt.tmpl +++ /dev/null @@ -1,227 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC1114 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC11xx\LPC111x_DS.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC11xx\LPC111x_LPC11Cxx_UM.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m0\r0p0\DDI0432C_CORTEX_M0_R0P0_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m0\r0p0\DUI0497A_CORTEX_M0_R0P0_GENERIC_UG.PDF - - - - SARMCM3.DLL - - DARMP1.DLL - -pLPC11C24 - SARMCM3.DLL - - TARMP1.DLL - -pLPC11C24 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 7 - - - - - - - - - - - Segger\JL2CM3.dll - - - - 0 - JL2CM3 - -U611000000 -O4334 -S0 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO11 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000 - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - UL2CM3 - -O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000) - - - - - 0 - - - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 7 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc11c24.uvproj.tmpl b/workspace_tools/export/uvision4_lpc11c24.uvproj.tmpl deleted file mode 100644 index 9e6be2526f..0000000000 --- a/workspace_tools/export/uvision4_lpc11c24.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC1114 - 0x4 - ARM-ADS - - - LPC11C24/301 - NXP (founded by Philips) - IRAM(0x10000000-0x10001FFF) IROM(0-0x7FFF) CLOCK(12000000) CPUTYPE("Cortex-M0") - - "STARTUP\NXP\LPC11xx\startup_LPC11xx.s" ("NXP LPC11xx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000) - 5617 - LPC11xx.h - - - - - - - - - - SFD\NXP\LPC11xx\LPC11Cxx.sfr - 0 - - - - NXP\LPC11xx\ - NXP\LPC11xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - fromelf --bin -o build\{{name}}_LPC11C24.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMP1.DLL - -pLPC11C24 - SARMCM3.DLL - - TARMP1.DLL - -pLPC11C24 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 0 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 7 - - - - - - - - - - - - - - Segger\JL2CM3.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 1 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u24.uvopt.tmpl b/workspace_tools/export/uvision4_lpc11u24.uvopt.tmpl deleted file mode 100644 index f658322d98..0000000000 --- a/workspace_tools/export/uvision4_lpc11u24.uvopt.tmpl +++ /dev/null @@ -1,181 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC11U24 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMP1.DLL - -pLPC11U14 - SARMCM3.DLL - - TARMP1.DLL - -pLPC11U14 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u24.uvproj.tmpl b/workspace_tools/export/uvision4_lpc11u24.uvproj.tmpl deleted file mode 100644 index b089827968..0000000000 --- a/workspace_tools/export/uvision4_lpc11u24.uvproj.tmpl +++ /dev/null @@ -1,419 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC11U24 - 0x4 - ARM-ADS - - - LPC11U14/201 - NXP (founded by Philips) - IRAM(0x10000000-0x10000FFF) IROM(0-0x7FFF) CLOCK(12000000) CPUTYPE("Cortex-M0") - - "STARTUP\NXP\LPC11Uxx\startup_LPC11Uxx.s" ("NXP LPC11Uxx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000) - 5738 - LPC11Uxx.h - - - - - - - - - - SFD\NXP\LPC11Uxx\LPC11Uxx.SFR - 0 - - - - NXP\LPC11Uxx\ - NXP\LPC11Uxx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 1 - $K\ARM\BIN\ELFDWT.EXE "!L" - fromelf --bin -o {{name}}_LPC11U24.bin build\{{name}}.axf - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMP1.DLL - -pLPC11U14 - SARMCM3.DLL - - TARMP1.DLL - -pLPC11U14 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u35_401.uvopt.tmpl b/workspace_tools/export/uvision4_lpc11u35_401.uvopt.tmpl deleted file mode 100644 index 6dfb7e6143..0000000000 --- a/workspace_tools/export/uvision4_lpc11u35_401.uvopt.tmpl +++ /dev/null @@ -1,215 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC11U35_401 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 0 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC11Uxx\LPC11U3x_DS.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC11Uxx\UM10462.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m0\r0p0\DDI0432C_CORTEX_M0_R0P0_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m0\r0p0\DUI0497A_CORTEX_M0_R0P0_GENERIC_UG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - UL2CM3 - -O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_64 -FS00 -FL010000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O206 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_64 -FS00 -FL010000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u35_401.uvproj.tmpl b/workspace_tools/export/uvision4_lpc11u35_401.uvproj.tmpl deleted file mode 100644 index e09027c936..0000000000 --- a/workspace_tools/export/uvision4_lpc11u35_401.uvproj.tmpl +++ /dev/null @@ -1,429 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC11U35_401 - 0x4 - ARM-ADS - - - LPC11U35/401 - NXP - IRAM(0x10000000-0x10001FFF) IRAM2(0x20004000-0x200047FF) IROM(0-0xFFFF) CLOCK(12000000) CPUTYPE("Cortex-M0") - - "STARTUP\NXP\LPC11Uxx\startup_LPC11Uxx.s" ("NXP LPC11Uxx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_64 -FS00 -FL010000) - 6505 - LPC11Uxx.h - - - - - - - - - - SFD\NXP\LPC11Uxx\LPC11Uxx.SFR - 0 - - - - NXP\LPC11Uxx\ - NXP\LPC11Uxx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 1 - $K\ARM\BIN\ELFDWT.EXE "!L" - fromelf --bin -o {{name}}_LPC11U35_401.bin build\{{name}}.axf - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4104 - - 0 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 1 - 0x0 - 0x10000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x10000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 0 - 0x20004000 - 0x800 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u35_501.uvopt.tmpl b/workspace_tools/export/uvision4_lpc11u35_501.uvopt.tmpl deleted file mode 100644 index 9b96939968..0000000000 --- a/workspace_tools/export/uvision4_lpc11u35_501.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC11U35_501 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 0 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC11Uxx\LPC11U3x_DS.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC11Uxx\LPC11U3x_UM.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m0\r0p0\DDI0432C_CORTEX_M0_R0P0_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m0\r0p0\DUI0497A_CORTEX_M0_R0P0_GENERIC_UG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - UL2CM3 - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_64 -FS00 -FL010000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O206 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_64 -FS00 -FL010000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u35_501.uvproj.tmpl b/workspace_tools/export/uvision4_lpc11u35_501.uvproj.tmpl deleted file mode 100644 index 01b8e541ab..0000000000 --- a/workspace_tools/export/uvision4_lpc11u35_501.uvproj.tmpl +++ /dev/null @@ -1,424 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC11U35_501 - 0x4 - ARM-ADS - - - LPC11U35/501 - NXP (founded by Philips) - IRAM(0x10000000-0x10001FFF) IRAM2(0x20004000-0x200047FF) IROM(0-0xFFFF) CLOCK(12000000) CPUTYPE("Cortex-M0") - - "STARTUP\NXP\LPC11Uxx\startup_LPC11Uxx.s" ("NXP LPC11Uxx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_64 -FS00 -FL010000) - 6506 - LPC11Uxx.h - - - - - - - - - - SFD\NXP\LPC11Uxx\LPC11Uxx.SFR - 0 - - - - NXP\LPC11Uxx\ - NXP\LPC11Uxx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 1 - $K\ARM\BIN\ELFDWT.EXE "!L" - fromelf --bin -o {{name}}_LPC11U35_501.bin build\{{name}}.axf - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4104 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 1 - 0x0 - 0x10000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x10000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 0 - 0x20004000 - 0x800 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u37h_401.uvopt.tmpl b/workspace_tools/export/uvision4_lpc11u37h_401.uvopt.tmpl deleted file mode 100644 index 93f73fb2e6..0000000000 --- a/workspace_tools/export/uvision4_lpc11u37h_401.uvopt.tmpl +++ /dev/null @@ -1,181 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC11U37H_401 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMP1.DLL - -pLPC11U14 - SARMCM3.DLL - - TARMP1.DLL - -pLPC11U14 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u37h_401.uvproj.tmpl b/workspace_tools/export/uvision4_lpc11u37h_401.uvproj.tmpl deleted file mode 100644 index 3a0f057af8..0000000000 --- a/workspace_tools/export/uvision4_lpc11u37h_401.uvproj.tmpl +++ /dev/null @@ -1,419 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC11U37H_401 - 0x4 - ARM-ADS - - - LPC11U37/401 - NXP - IRAM(0x10000000-0x10001FFF) IRAM2(0x20004000-0x200047FF) IROM(0-0x1FFFF) CLOCK(12000000) CPUTYPE("Cortex-M0") - - "STARTUP\NXP\LPC11Uxx\startup_LPC11Uxx.s" ("NXP LPC11Uxx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000) - 5738 - LPC11Uxx.h - - - - - - - - - - SFD\NXP\LPC11Uxx\LPC11Uxx.SFR - 0 - - - - NXP\LPC11Uxx\ - NXP\LPC11Uxx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 1 - $K\ARM\BIN\ELFDWT.EXE "!L" - fromelf --bin -o {{name}}_LPC11U37H.bin build\{{name}}.axf - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMP1.DLL - -pLPC11U14 - SARMCM3.DLL - - TARMP1.DLL - -pLPC11U37 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 1 - 0x0 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 0 - 0x20004000 - 0x800 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u68.uvopt.tmpl b/workspace_tools/export/uvision4_lpc11u68.uvopt.tmpl deleted file mode 100644 index b72496665f..0000000000 --- a/workspace_tools/export/uvision4_lpc11u68.uvopt.tmpl +++ /dev/null @@ -1,181 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC11U68 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMP1.DLL - -pLPC11U14 - SARMCM3.DLL - - TARMP1.DLL - -pLPC11U14 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc11u68.uvproj.tmpl b/workspace_tools/export/uvision4_lpc11u68.uvproj.tmpl deleted file mode 100644 index 45c58a1454..0000000000 --- a/workspace_tools/export/uvision4_lpc11u68.uvproj.tmpl +++ /dev/null @@ -1,419 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC11U68 - 0x4 - ARM-ADS - - - LPC11U68 - NXP - IRAM(0x10000000-0x10001FFF) IRAM2(0x20004000-0x200047FF) IROM(0-0x1FFFF) CLOCK(12000000) CPUTYPE("Cortex-M0+") - - "STARTUP\NXP\LPC11Uxx\startup_LPC11Uxx.s" ("NXP LPC11Uxx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000) - 5738 - LPC11Uxx.h - - - - - - - - - - SFD\NXP\LPC11Uxx\LPC11Uxx.SFR - 0 - - - - NXP\LPC11Uxx\ - NXP\LPC11Uxx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 1 - $K\ARM\BIN\ELFDWT.EXE "!L" - fromelf --bin -o {{name}}_LPC11U68.bin build\{{name}}.axf - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMP1.DLL - -pLPC11U14 - SARMCM3.DLL - - TARMP1.DLL - -pLPC11U68 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 1 - 0x0 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 0 - 0x20004000 - 0x800 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc1347.uvopt.tmpl b/workspace_tools/export/uvision4_lpc1347.uvopt.tmpl deleted file mode 100644 index 877d0b8cda..0000000000 --- a/workspace_tools/export/uvision4_lpc1347.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - LPC1347 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - User Manual - DATASHTS\PHILIPS\LPC13UXX_15_16_17_45_46_47_UM.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m3\r2p1\DDI0337I_CORTEXM3_R2P1_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m3\r2p1\DUI0552A_CORTEX_M3_DGUG.PDF - - - - SARMCM3.DLL - - DCM.DLL - -pCM3 - SARMCM3.DLL - - TCM.DLL - -pCM3 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 9 - - - - - - - - - - - BIN\ULP2CM3.DLL - - - - 0 - ULP2CM3 - -UP1048454 -O206 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP18 -TDX0 -TDD0 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_64 -FS00 -FL010000 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_32 -FS00 -FL08000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc1347.uvproj.tmpl b/workspace_tools/export/uvision4_lpc1347.uvproj.tmpl deleted file mode 100644 index 75deb14fef..0000000000 --- a/workspace_tools/export/uvision4_lpc1347.uvproj.tmpl +++ /dev/null @@ -1,420 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - LPC1347 - 0x4 - ARM-ADS - - - LPC1347 - NXP (founded by Philips) - IRAM(0x10000000-0x10001FFF) IRAM2(0x20000000-0x200007FF) IROM(0-0xFFFF) CLOCK(12000000) CPUTYPE("Cortex-M3") - - "STARTUP\NXP\LPC13Uxx\startup_LPC13Uxx.s" ("NXP LPC13Uxx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC1xxx_64 -FS00 -FL010000) - 6286 - LPC13Uxx.h - - - - - - - - - - SFD\NXP\LPC13Uxx\LPC13Uxx.sfr - 0 - - - - NXP\LPC13Uxx\ - NXP\LPC13Uxx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC1347.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DCM.DLL - -pCM3 - SARMCM3.DLL - - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 9 - - - - - - - - - - - - - - BIN\ULP2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 1 - 4101 - - 0 - BIN\ULP2CM3.DLL - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc1549.uvopt.tmpl b/workspace_tools/export/uvision4_lpc1549.uvopt.tmpl deleted file mode 100644 index dc4fd4eab1..0000000000 --- a/workspace_tools/export/uvision4_lpc1549.uvopt.tmpl +++ /dev/null @@ -1,223 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC1549 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC15xx\NotYetAvailable.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC15xx\NotYetAvailable.pdf - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DCM.DLL - -pCM3 - SARMCM3.DLL - - TCM.DLL - -pCM3 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U154902001A4E0E21E7B1E490 -O4303 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD2000000 -FC800 -FN1 -FF0LPC15xx_256 -FS00 -FL040000 - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=90,120,456,345,0)(1009=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - UL2CM3 - -UM0869MEE -O4303 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO7 -FD2000000 -FC800 -FN1 -FF0LPC15xx_256 -FS00 -FL040000 - - - - - 0 - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 7 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc1549.uvproj.tmpl b/workspace_tools/export/uvision4_lpc1549.uvproj.tmpl deleted file mode 100644 index 63e0882502..0000000000 --- a/workspace_tools/export/uvision4_lpc1549.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC1549 - 0x4 - ARM-ADS - - - LPC1549 - NXP (founded by Philips) - IRAM(0x02000000-0x02008FFF) IROM(0x0-0x3FFFF) CLOCK(12000000) CPUTYPE("Cortex-M3") - - "STARTUP\NXP\LPC15xx\startup_LPC15xx.s" ("NXP LPC15xx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD2000000 -FC800 -FN1 -FF0LPC15xx_256 -FS00 -FL040000) - 7281 - LPC15xx.h - - - - - - - - - - SFD\NXP\LPC15xx\LPC15xx.SFR - 0 - 0 - - - - NXP\LPC15xx\ - NXP\LPC15xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC1549.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DCM.DLL - -pCM3 - SARMCM3.DLL - - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x2000000 - 0x9000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x2000000 - 0x9000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc1768.uvopt.tmpl b/workspace_tools/export/uvision4_lpc1768.uvopt.tmpl deleted file mode 100644 index 91ca45b89c..0000000000 --- a/workspace_tools/export/uvision4_lpc1768.uvopt.tmpl +++ /dev/null @@ -1,201 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC1768 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DARMP1.DLL - -pLPC1768 - SARMCM3.DLL - -MPU - TARMP1.DLL - -pLPC1768 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O4559 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - 0 - DLGUARM - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(350=-1,-1,-1,-1,0)(250=-1,-1,-1,-1,0)(270=-1,-1,-1,-1,0)(313=-1,-1,-1,-1,0)(291=-1,-1,-1,-1,0)(302=-1,-1,-1,-1,0)(110=-1,-1,-1,-1,0)(113=-1,-1,-1,-1,0)(320=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(330=-1,-1,-1,-1,0)(332=-1,-1,-1,-1,0)(333=-1,-1,-1,-1,0)(334=-1,-1,-1,-1,0)(335=-1,-1,-1,-1,0)(336=-1,-1,-1,-1,0)(345=-1,-1,-1,-1,0)(346=-1,-1,-1,-1,0)(381=-1,-1,-1,-1,0)(382=-1,-1,-1,-1,0)(383=-1,-1,-1,-1,0)(384=-1,-1,-1,-1,0)(197=-1,-1,-1,-1,0)(198=-1,-1,-1,-1,0)(191=-1,-1,-1,-1,0)(192=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(261=-1,-1,-1,-1,0)(262=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(121=-1,-1,-1,-1,0)(122=-1,-1,-1,-1,0)(123=-1,-1,-1,-1,0)(124=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(142=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(400=-1,-1,-1,-1,0)(370=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(280=-1,-1,-1,-1,0)(240=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - UL2CM3 - -UV0218BNE -O463 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO19 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 7 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_lpc1768.uvproj.tmpl b/workspace_tools/export/uvision4_lpc1768.uvproj.tmpl deleted file mode 100644 index 6fdbbe2419..0000000000 --- a/workspace_tools/export/uvision4_lpc1768.uvproj.tmpl +++ /dev/null @@ -1,422 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC1768 - 0x4 - ARM-ADS - - - LPC1768 - NXP (founded by Philips) - IRAM(0x10000000-0x10007FFF) IRAM2(0x2007C000-0x20083FFF) IROM(0-0x7FFFF) CLOCK(12000000) CPUTYPE("Cortex-M3") - - "STARTUP\NXP\LPC17xx\startup_LPC17xx.s" ("NXP LPC17xx Startup Code") - UL2CM3(-O463 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000) - 4868 - LPC17xx.H - - - - - - - - - - 0 - - - - NXP\LPC17xx\ - NXP\LPC17xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC1768.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DARMP1.DLL - -pLPC1768 - SARMCM3.DLL - -MPU - TARMP1.DLL - -pLPC1768 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x8000 - - - 1 - 0x0 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x80000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x8000 - - - 0 - 0x2007c000 - 0x8000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc4088.uvopt.tmpl b/workspace_tools/export/uvision4_lpc4088.uvopt.tmpl deleted file mode 100644 index 542903f60d..0000000000 --- a/workspace_tools/export/uvision4_lpc4088.uvopt.tmpl +++ /dev/null @@ -1,230 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC4088 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC407x_8x\LPC408X_7X.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC407x_8x\UM10562.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m4\r0p1\DDI0439C_CORTEX_M4_R0P1_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m4\r0p1\DUI0553A_CORTEX_M4_DGUG.PDF - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O4559 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - 0 - DLGUARM - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(350=-1,-1,-1,-1,0)(250=-1,-1,-1,-1,0)(270=-1,-1,-1,-1,0)(313=-1,-1,-1,-1,0)(291=-1,-1,-1,-1,0)(302=-1,-1,-1,-1,0)(110=-1,-1,-1,-1,0)(113=-1,-1,-1,-1,0)(320=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(330=-1,-1,-1,-1,0)(332=-1,-1,-1,-1,0)(333=-1,-1,-1,-1,0)(334=-1,-1,-1,-1,0)(335=-1,-1,-1,-1,0)(336=-1,-1,-1,-1,0)(345=-1,-1,-1,-1,0)(346=-1,-1,-1,-1,0)(381=-1,-1,-1,-1,0)(382=-1,-1,-1,-1,0)(383=-1,-1,-1,-1,0)(384=-1,-1,-1,-1,0)(197=-1,-1,-1,-1,0)(198=-1,-1,-1,-1,0)(191=-1,-1,-1,-1,0)(192=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(261=-1,-1,-1,-1,0)(262=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(121=-1,-1,-1,-1,0)(122=-1,-1,-1,-1,0)(123=-1,-1,-1,-1,0)(124=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(142=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(400=-1,-1,-1,-1,0)(370=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(280=-1,-1,-1,-1,0)(240=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - UL2CM3 - -UV0218BNE -O463 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO19 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 7 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_lpc4088.uvproj.tmpl b/workspace_tools/export/uvision4_lpc4088.uvproj.tmpl deleted file mode 100644 index 6a92907c1a..0000000000 --- a/workspace_tools/export/uvision4_lpc4088.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - NXP LPC4088 - 0x4 - ARM-ADS - - - LPC4088 - NXP (founded by Philips) - IRAM(0x10000000-0x1000FFFF) IRAM2(0x20000000-0x20007FFF) IROM(0-0x7FFFF) CLOCK(12000000) CPUTYPE("Cortex-M4") FPU2 - - "STARTUP\NXP\LPC407x_8x_177x_8x\startup_LPC407x_8x_177x_8x.s" ("NXP LPC407x_8x_177x_8x Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000) - 6493 - LPC407x_8x_177x_8x.h - - - - - - - - - - SFD\NXP\LPC407x_8x_177x_8x\LPC408x_7x.SFR - 0 - - - - NXP\LPC407x_8x_177x_8x\ - NXP\LPC407x_8x_177x_8x\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC4088.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x10000 - - - 1 - 0x0 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x80000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x10000 - - - 0 - 0x20000000 - 0x8000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --any_placement=first_fit - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc4088_dm.uvopt.tmpl b/workspace_tools/export/uvision4_lpc4088_dm.uvopt.tmpl deleted file mode 100644 index 542903f60d..0000000000 --- a/workspace_tools/export/uvision4_lpc4088_dm.uvopt.tmpl +++ /dev/null @@ -1,230 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC4088 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC407x_8x\LPC408X_7X.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC407x_8x\UM10562.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m4\r0p1\DDI0439C_CORTEX_M4_R0P1_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m4\r0p1\DUI0553A_CORTEX_M4_DGUG.PDF - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O4559 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - 0 - DLGUARM - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(350=-1,-1,-1,-1,0)(250=-1,-1,-1,-1,0)(270=-1,-1,-1,-1,0)(313=-1,-1,-1,-1,0)(291=-1,-1,-1,-1,0)(302=-1,-1,-1,-1,0)(110=-1,-1,-1,-1,0)(113=-1,-1,-1,-1,0)(320=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(330=-1,-1,-1,-1,0)(332=-1,-1,-1,-1,0)(333=-1,-1,-1,-1,0)(334=-1,-1,-1,-1,0)(335=-1,-1,-1,-1,0)(336=-1,-1,-1,-1,0)(345=-1,-1,-1,-1,0)(346=-1,-1,-1,-1,0)(381=-1,-1,-1,-1,0)(382=-1,-1,-1,-1,0)(383=-1,-1,-1,-1,0)(384=-1,-1,-1,-1,0)(197=-1,-1,-1,-1,0)(198=-1,-1,-1,-1,0)(191=-1,-1,-1,-1,0)(192=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(261=-1,-1,-1,-1,0)(262=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(121=-1,-1,-1,-1,0)(122=-1,-1,-1,-1,0)(123=-1,-1,-1,-1,0)(124=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(142=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(400=-1,-1,-1,-1,0)(370=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(280=-1,-1,-1,-1,0)(240=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - UL2CM3 - -UV0218BNE -O463 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO19 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 3 - 0 - - - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 7 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_lpc4088_dm.uvproj.tmpl b/workspace_tools/export/uvision4_lpc4088_dm.uvproj.tmpl deleted file mode 100644 index ec0158c9da..0000000000 --- a/workspace_tools/export/uvision4_lpc4088_dm.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - NXP LPC4088 - 0x4 - ARM-ADS - - - LPC4088_DM - NXP (founded by Philips) - IRAM(0x10000000-0x1000FFFF) IRAM2(0x20000000-0x20007FFF) IROM(0-0x7FFFF) CLOCK(12000000) CPUTYPE("Cortex-M4") FPU2 - - "STARTUP\NXP\LPC407x_8x_177x_8x\startup_LPC407x_8x_177x_8x.s" ("NXP LPC407x_8x_177x_8x Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000) - 6493 - LPC407x_8x_177x_8x.h - - - - - - - - - - SFD\NXP\LPC407x_8x_177x_8x\LPC408x_7x.SFR - 0 - - - - NXP\LPC407x_8x_177x_8x\ - NXP\LPC407x_8x_177x_8x\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC4088.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x10000 - - - 1 - 0x0 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x80000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x10000 - - - 0 - 0x20000000 - 0x8000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --any_placement=first_fit - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc4330_m4.uvopt.tmpl b/workspace_tools/export/uvision4_lpc4330_m4.uvopt.tmpl deleted file mode 100644 index 2a79dfe76c..0000000000 --- a/workspace_tools/export/uvision4_lpc4330_m4.uvopt.tmpl +++ /dev/null @@ -1,205 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC4330_M4 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 14 - - - - - - - - - - .\mbed\TARGET_LPC4330_M4\TOOLCHAIN_ARM_STD\LPC43xx_spifi.ini - BIN\CMSIS_AGDI.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U16050201FD55783D5C667D3A -O910 -S10 -C0 -P00 -N00("ARM CoreSight JTAG-DP") -D00(4BA00477) -L00(0) -N01("ARM CoreSight JTAG-DP") -D01(0BA01477) -L01(0) -FO3 -FD10000000 -FC4000 -FN1 -FF0LPC18xx43xx_S25FL032 -FS014000000 -FL0400000 - - - 0 - UL2CM3 - UL2CM3(-O975 -S0 -C0) - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 10 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_lpc4330_m4.uvproj.tmpl b/workspace_tools/export/uvision4_lpc4330_m4.uvproj.tmpl deleted file mode 100644 index a71c799796..0000000000 --- a/workspace_tools/export/uvision4_lpc4330_m4.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - {{name}}_LPC4330_M4 - 0x4 - ARM-ADS - - - LPC4330 - NXP (founded by Philips) - IRAM(0x10000000-0x1001FFFF) IRAM2(0x20000000-0x2000FFFF) CLOCK(12000000) CPUTYPE("Cortex-M4") FPU2 - - "STARTUP\NXP\LPC43xx\startup_LPC43xx.s" ("NXP LPC43xx Startup Code") - UL2CM3(-O975 -S0 -C0) - 6193 - LPC43xx.H - - - - - - - - - - SFD\NXP\LPC43xx\LPC43xx.SFR - 0 - 0 - - - - NXP\LPC43xx\ - NXP\LPC43xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 1 - $K\ARM\BIN\ELFDWT.EXE !L BASEADDRESS(0x14000000) - fromelf --bin -o "$L@L_LPC4330_M4.bin" "$L@L.axf" - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 14 - - - - - - - - - - - - - .\mbed\TARGET_LPC4330_M4\TOOLCHAIN_ARM_STD\LPC43xx_spifi.ini - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 2 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x14000000 - 0x400000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x20000 - - - 0 - 0x20000000 - 0x10000 - - - - - - 1 - 1 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 1 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc4337.uvopt.tmpl b/workspace_tools/export/uvision4_lpc4337.uvopt.tmpl deleted file mode 100644 index 353651501b..0000000000 --- a/workspace_tools/export/uvision4_lpc4337.uvopt.tmpl +++ /dev/null @@ -1,205 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC4337 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 14 - - - - - - - - - - .\mbed\TARGET_LPC4330_M4\TOOLCHAIN_ARM_STD\LPC43xx_spifi.ini - BIN\CMSIS_AGDI.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U16050201FD55783D5C667D3A -O910 -S10 -C0 -P00 -N00("ARM CoreSight JTAG-DP") -D00(4BA00477) -L00(0) -N01("ARM CoreSight JTAG-DP") -D01(0BA01477) -L01(0) -FO3 -FD10000000 -FC4000 -FN1 -FF0LPC18xx43xx_S25FL032 -FS014000000 -FL0400000 - - - 0 - UL2CM3 - UL2CM3(-O975 -S0 -C0) - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 10 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_lpc4337.uvproj.tmpl b/workspace_tools/export/uvision4_lpc4337.uvproj.tmpl deleted file mode 100644 index 33dc63624d..0000000000 --- a/workspace_tools/export/uvision4_lpc4337.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - {{name}}_LPC4337 - 0x4 - ARM-ADS - - - LPC4337 - NXP - IRAM(0x10000000-0x10007FFF) IRAM2(0x20000000-0x2000FFFF) IROM(0x1A000000-0x1A07FFFF) IROM2(0x1B000000-0x1B07FFFF) CLOCK(12000000) CPUTYPE("Cortex-M4") FPU2 - - "STARTUP\NXP\LPC43xx\startup_LPC43xx.s" ("NXP LPC43xx Startup Code") - UL2CM3(-O975 -S0 -C0 -FO7 -FD10000000 -FC800 -FN2 -FF0LPC18xx43xx_512_BA -FS01A000000 -FL080000 -FF1LPC18xx43xx_512_BB -FS11B000000 -FL180000) - 7312 - LPC43xx.H - - - - - - - - - - SFD\NXP\LPC43xx\LPC43xx.SFR - 0 - 0 - - - - NXP\LPC43xx\ - NXP\LPC43xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - $K\ARM\BIN\ElfDwT.exe !L BASEADDRESS(0x1A000000) - fromelf --bin -o "$L@L_LPC4337.bin" "$L@L.axf" - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - 0 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 2 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x8000 - - - 1 - 0x1a000000 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x1a000000 - 0x80000 - - - 1 - 0x1b000000 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x8000 - - - 0 - 0x20000000 - 0x10000 - - - - - - 1 - 1 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 1 - - --gnu --no_rtti - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc812.uvopt.tmpl b/workspace_tools/export/uvision4_lpc812.uvopt.tmpl deleted file mode 100644 index 97b424e241..0000000000 --- a/workspace_tools/export/uvision4_lpc812.uvopt.tmpl +++ /dev/null @@ -1,198 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed LPC812 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC8xx\LPC81XM.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC8xx\UM10601.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - UL2CM3 - UL2CM3(-O4303 -S0 -C0 -FO7 -FN1 -FC800 -FD10000000 -FF0LPC8xx_16 -FL04000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U -O4303 -S0 -C0 -P00 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC8xx_16 -FS00 -FL04000 - - - - - 0 - - - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - -
diff --git a/workspace_tools/export/uvision4_lpc812.uvproj.tmpl b/workspace_tools/export/uvision4_lpc812.uvproj.tmpl deleted file mode 100644 index 4f66e80339..0000000000 --- a/workspace_tools/export/uvision4_lpc812.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed LPC812 - 0x4 - ARM-ADS - - - LPC812M101 - NXP (founded by Philips) - IRAM(0x10000000-0x10000FFF) IROM(0-0x3FFF) CLOCK(12000000) CPUTYPE("Cortex-M0+") - - "STARTUP\NXP\LPC8xx\startup_LPC8xx.s" ("NXP LPC8xx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC8xx_16 -FS00 -FL04000) - 6712 - LPC8xx.h - - - - - - - - - - SFD\NXP\LPC8xx\LPC800.SFR - 0 - - - - NXP\LPC8xx\ - NXP\LPC8xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC812.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 0 - -1 - - 1 - BIN\UL2CM3.DLL - - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 1 - 0x0 - 0x4000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x4000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_lpc824.uvopt.tmpl b/workspace_tools/export/uvision4_lpc824.uvopt.tmpl deleted file mode 100644 index 8da621e398..0000000000 --- a/workspace_tools/export/uvision4_lpc824.uvopt.tmpl +++ /dev/null @@ -1,198 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed LPC824 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC8xx\LPC81XM.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC8xx\UM10601.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - UL2CM3 - UL2CM3(-O4303 -S0 -C0 -FO7 -FN1 -FC800 -FD10000000 -FF0LPC8xx_32 -FL08000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U -O4303 -S0 -C0 -P00 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC8xx_32 -FS00 -FL08000 - - - - - 0 - - - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - -
diff --git a/workspace_tools/export/uvision4_lpc824.uvproj.tmpl b/workspace_tools/export/uvision4_lpc824.uvproj.tmpl deleted file mode 100644 index 8558e730aa..0000000000 --- a/workspace_tools/export/uvision4_lpc824.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed LPC824 - 0x4 - ARM-ADS - - - LPC812M101 - NXP (founded by Philips) - IRAM(0x10000000-0x10001FFF) IROM(0-0x7FFF) CLOCK(12000000) CPUTYPE("Cortex-M0+") - - "STARTUP\NXP\LPC8xx\startup_LPC8xx.s" ("NXP LPC8xx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC8xx_32 -FS00 -FL08000) - 6712 - LPC8xx.h - - - - - - - - - - SFD\NXP\LPC8xx\LPC800.SFR - 0 - - - - NXP\LPC8xx\ - NXP\LPC8xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC824.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 0 - -1 - - 1 - BIN\UL2CM3.DLL - - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_max32600mbed.uvopt.tmpl b/workspace_tools/export/uvision4_max32600mbed.uvopt.tmpl deleted file mode 100644 index 630dd14ce3..0000000000 --- a/workspace_tools/export/uvision4_max32600mbed.uvopt.tmpl +++ /dev/null @@ -1,197 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - MAX32600MBED - 0x4 - ARM-ADS - - 24000000 - - - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - SARMCM3.DLL - - DCM.DLL - -pCM3 - SARMCM3.DLL - - TCM.DLL - -pCM3 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U0400020312345678EFC8AD80 -O142 -S0 -C0 -P00 -N00("ARM CoreSight JTAG-DP") -D00(4BA00477) -L00(0) -FO23 -FD20000000 -FC800 -FN1 -FF0MAX32600 -FS00 -FL040000 - - - 0 - DLGUARM - - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_max32600mbed.uvproj.tmpl b/workspace_tools/export/uvision4_max32600mbed.uvproj.tmpl deleted file mode 100644 index 9ccd29557c..0000000000 --- a/workspace_tools/export/uvision4_max32600mbed.uvproj.tmpl +++ /dev/null @@ -1,424 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - MAX32600MBED - 0x4 - ARM-ADS - - - MAX32600 - Maxim Integrated - IRAM(0x20000000, 0x8000) IROM(0, 0x40000) CLOCK(24000000) CPUTYPE("Cortex-M3") - - - - - - - - - - - - - - - - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_max32600.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DCM.DLL - -pCM3 - SARMCM3.DLL - - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - - - - - - - - - - - - - - - - - - - - 1 - 0 - 0 - 1 - 1 - 4104 - - 0 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_maxwsnenv.uvopt.tmpl b/workspace_tools/export/uvision4_maxwsnenv.uvopt.tmpl deleted file mode 100644 index e1a2ad34a1..0000000000 --- a/workspace_tools/export/uvision4_maxwsnenv.uvopt.tmpl +++ /dev/null @@ -1,197 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - MAXWSNENV - 0x4 - ARM-ADS - - 24000000 - - - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - SARMCM3.DLL - - DCM.DLL - -pCM3 - SARMCM3.DLL - - TCM.DLL - -pCM3 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U0400020312345678EFC8AD80 -O142 -S0 -C0 -P00 -N00("ARM CoreSight JTAG-DP") -D00(4BA00477) -L00(0) -FO23 -FD20000000 -FC800 -FN1 -FF0MAX32600 -FS00 -FL040000 - - - 0 - DLGUARM - - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_maxwsnenv.uvproj.tmpl b/workspace_tools/export/uvision4_maxwsnenv.uvproj.tmpl deleted file mode 100644 index 907a1f570e..0000000000 --- a/workspace_tools/export/uvision4_maxwsnenv.uvproj.tmpl +++ /dev/null @@ -1,424 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - MAXWSNENV - 0x4 - ARM-ADS - - - MAX32610 - Maxim Integrated - IRAM(0x20000000, 0x8000) IROM(0, 0x40000) CLOCK(24000000) CPUTYPE("Cortex-M3") - - - - - - - - - - - - - - - - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_max32610.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DCM.DLL - -pCM3 - SARMCM3.DLL - - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - - - - - - - - - - - - - - - - - - - - 1 - 0 - 0 - 1 - 1 - 4104 - - 0 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x1000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_mote_l152rc.uvopt.tmpl b/workspace_tools/export/uvision4_mote_l152rc.uvopt.tmpl deleted file mode 100755 index 454e48b3d4..0000000000 --- a/workspace_tools/export/uvision4_mote_l152rc.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed MOTE_L152RC - 0x4 - ARM-ADS - - 32000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32L1xx_384.FLM -FS08000000 -FL060000 -FP0($$Device:STM32L152RC$Flash\STM32L1xx_384.FLM) - - - 0 - UL2CM3 - UL2CM3(-O14 -S0 -C0 -N00("ARM Cortex-M3") -D00(1BA00477) -L00(4) -FO7 -FN1 -FC1000 -FD20000000 -FF0STM32L1xx_384 -FL060000 -FS08000000 -FP0($$Device:STM32L152RC$Flash\STM32L1xx_384.FLM) - - - 0 - ULP2CM3 - -U -O207 -S8 -C0 -P00 -TO18 -TC10000000 -TP18 -TDX0 -TDD0 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_mote_l152rc.uvproj.tmpl b/workspace_tools/export/uvision4_mote_l152rc.uvproj.tmpl deleted file mode 100755 index 8e1685d8a3..0000000000 --- a/workspace_tools/export/uvision4_mote_l152rc.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed MOTE_L152RC - 0x4 - ARM-ADS - - - STM32L152RC - STMicroelectronics - IRAM(0x20000000-0x20007FFF) IROM(0x8000000-0x803FFFF) CLOCK(8000000) CPUTYPE("Cortex-M3") - - - ULP2CM3(-O207 -S8 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000) - 6520 - $$Device:STM32L152RC$Device\Include\STM32L1xx.h - - - - - - - - - - $$Device:STM32L152RC$SVD\STM32L15x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_MOTE_L152RC.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0xc000 - - - 1 - 0x8000000 - 0x60000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x60000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0xc000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_mts_gambit.uvopt.tmpl b/workspace_tools/export/uvision4_mts_gambit.uvopt.tmpl deleted file mode 100644 index cbde8efa00..0000000000 --- a/workspace_tools/export/uvision4_mts_gambit.uvopt.tmpl +++ /dev/null @@ -1,187 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed MTS-GAMBIT - 0x4 - ARM-ADS - - 12000000 - - 0 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U024002014C482E7AB1B6D3C2 -O2510 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD20000000 -FC4000 -FN1 -FF0MK_P1M0 -FS00 -FL0100000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_mts_gambit.uvproj.tmpl b/workspace_tools/export/uvision4_mts_gambit.uvproj.tmpl deleted file mode 100644 index 4d811506fb..0000000000 --- a/workspace_tools/export/uvision4_mts_gambit.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed MTS-GAMBIT - 0x4 - ARM-ADS - - - MK64FN1M0xxx12 - Freescale Semiconductor - IROM(0x00000000,0x100000) IRAM(0x20000000,0x30000) IRAM2(0x1FFF0000,0x10000) CPUTYPE("Cortex-M4") FPU2 CLOCK(120000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0MK_P1M0 -FS00 -FL0100000 -FP0($$Device:MK64FN1M0xxx12$Flash\MK_P1M0.FLM)) - 7425 - $$Device:MK64FN1M0xxx12$Device\Include\MK64F12.h - - - - - - - - - - $$Device:MK64FN1M0xxx12$SVD\MK64F12.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_MTS_GAMBIT.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 13 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4104 - - 0 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fff0000 - 0x10000 - - - 1 - 0x0 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fff0000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} --pch --pch_dir=build - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_mts_mdot_f405rg.uvopt.tmpl b/workspace_tools/export/uvision4_mts_mdot_f405rg.uvopt.tmpl deleted file mode 100644 index 8b4cb09cb3..0000000000 --- a/workspace_tools/export/uvision4_mts_mdot_f405rg.uvopt.tmpl +++ /dev/null @@ -1,181 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed MTS mDot F405RG - 0x4 - ARM-ADS - - 26000000 - - 0 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 1 - - - - - - - - - - - BIN\UL2CM3.DLL - - - - 0 - UL2CM3 - UL2CM3(-O207 -O207 -S0 -C0 -FO7 -FN1 -FC800 -FD20000000 -FF0STM32F4xx_1024 -FL0100000 -FS08000000 - - - - - 0 - - - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_mts_mdot_f405rg.uvproj.tmpl b/workspace_tools/export/uvision4_mts_mdot_f405rg.uvproj.tmpl deleted file mode 100644 index f3c6bc6352..0000000000 --- a/workspace_tools/export/uvision4_mts_mdot_f405rg.uvproj.tmpl +++ /dev/null @@ -1,445 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed MTS mDot F405RG - 0x4 - ARM-ADS - - - STM32F405RG - STMicroelectronics - IRAM(0x20000000-0x2001FFFF) IRAM2(0x10000000-0x1000FFFF) IROM(0x8000000-0x80FFFFF) CLOCK(25000000) CPUTYPE("Cortex-M4") FPU2 - - - UL2CM3(-O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F4xx_1024 -FS08000000 -FL0100000) - 6100 - stm32f4xx.h - - - - - - - -DSTM32F40_41xxx - - - SFD\ST\STM32F4xx\STM32F40x.sfr - 0 - 0 - - - - ST\STM32F4xx\ - ST\STM32F4xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_MTS_MDOT_F405RG.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -MPU -REMAP - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - - 0 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 1 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 1 - 0 - -1 - - 1 - BIN\UL2CM3.DLL - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 0 - 0x10000000 - 0x10000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nrf51822.uvopt.tmpl b/workspace_tools/export/uvision4_nrf51822.uvopt.tmpl deleted file mode 100644 index 2d8cbbceb0..0000000000 --- a/workspace_tools/export/uvision4_nrf51822.uvopt.tmpl +++ /dev/null @@ -1,214 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - nRF51822AA - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 12 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - JL2CM3 - -U480204337 -O78 -S0 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51$Flash\nrf51xxx.flm)) - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U107002011FE6E019E2180F91 -O718 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_nrf51822.uvproj.tmpl b/workspace_tools/export/uvision4_nrf51822.uvproj.tmpl deleted file mode 100644 index 713e1412bd..0000000000 --- a/workspace_tools/export/uvision4_nrf51822.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - nRF51822AA - 0x4 - ARM-ADS - - - nRF51xxx - Nordic Semiconductor - IROM(0x00000000,0x40000) IRAM(0x20000000,0x4000) CPUTYPE("Cortex-M0") CLOCK(16000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm)) - 0 - $$Device:nRF51xxx$Device\Include\nrf.h - - - - - - - - - - $$Device:nRF51xxx$SVD\nrf51.xml - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 0 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nrf51_dk.uvopt.tmpl b/workspace_tools/export/uvision4_nrf51_dk.uvopt.tmpl deleted file mode 100644 index 2d8cbbceb0..0000000000 --- a/workspace_tools/export/uvision4_nrf51_dk.uvopt.tmpl +++ /dev/null @@ -1,214 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - nRF51822AA - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 12 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - JL2CM3 - -U480204337 -O78 -S0 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51$Flash\nrf51xxx.flm)) - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U107002011FE6E019E2180F91 -O718 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_nrf51_dk.uvproj.tmpl b/workspace_tools/export/uvision4_nrf51_dk.uvproj.tmpl deleted file mode 100644 index 713e1412bd..0000000000 --- a/workspace_tools/export/uvision4_nrf51_dk.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - nRF51822AA - 0x4 - ARM-ADS - - - nRF51xxx - Nordic Semiconductor - IROM(0x00000000,0x40000) IRAM(0x20000000,0x4000) CPUTYPE("Cortex-M0") CLOCK(16000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm)) - 0 - $$Device:nRF51xxx$Device\Include\nrf.h - - - - - - - - - - $$Device:nRF51xxx$SVD\nrf51.xml - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 0 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nrf51_dongle.uvopt.tmpl b/workspace_tools/export/uvision4_nrf51_dongle.uvopt.tmpl deleted file mode 100644 index 2d8cbbceb0..0000000000 --- a/workspace_tools/export/uvision4_nrf51_dongle.uvopt.tmpl +++ /dev/null @@ -1,214 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - nRF51822AA - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 12 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - JL2CM3 - -U480204337 -O78 -S0 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51$Flash\nrf51xxx.flm)) - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U107002011FE6E019E2180F91 -O718 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_nrf51_dongle.uvproj.tmpl b/workspace_tools/export/uvision4_nrf51_dongle.uvproj.tmpl deleted file mode 100644 index 713e1412bd..0000000000 --- a/workspace_tools/export/uvision4_nrf51_dongle.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - nRF51822AA - 0x4 - ARM-ADS - - - nRF51xxx - Nordic Semiconductor - IROM(0x00000000,0x40000) IRAM(0x20000000,0x4000) CPUTYPE("Cortex-M0") CLOCK(16000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm)) - 0 - $$Device:nRF51xxx$Device\Include\nrf.h - - - - - - - - - - $$Device:nRF51xxx$SVD\nrf51.xml - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 0 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f030r8.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f030r8.uvopt.tmpl deleted file mode 100644 index 99dc98af04..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f030r8.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F030R8 - 0x4 - ARM-ADS - - 48000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F0xx_64.FLM -FS08000000 -FL010000 -FP0($$Device:STM32F030R8$Flash\STM32F0xx_64.FLM) - - - 0 - UL2CM3 - UL2CM3(-O14 -S0 -C0 -N00("ARM Cortex-M3") -D00(1BA00477) -L00(4) -FO7 -FN1 -FC1000 -FD20000000 -FF0STM32F0xx_64 -FL010000 -FS08000000 -FP0($$Device:STM32F030R8$Flash\STM32F0xx_64.FLM) - - - 0 - ULP2CM3 - -U -O207 -S8 -C0 -P00 -TO18 -TC10000000 -TP18 -TDX0 -TDD0 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f030r8.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f030r8.uvproj.tmpl deleted file mode 100644 index 400e2c2684..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f030r8.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F030R8 - 0x4 - ARM-ADS - - - STM32F030R8 - STMicroelectronics - IROM(0x08000000,0x10000) IRAM(0x20000000,0x2000) CPUTYPE("Cortex-M0") CLOCK(48000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F0xx_64 -FS08000000 -FL010000 -FP0($$Device:STM32F030R8$Flash\STM32F0xx_64.FLM)) - 7309 - $$Device:STM32F030R8$Device\Include\stm32f0xx.h - - - - - - - - - - $$Device:STM32F030R8$SVD\STM32F030.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F030R8.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 1 - 0x8000000 - 0x10000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x10000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f031k6.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f031k6.uvopt.tmpl deleted file mode 100644 index 2392aa1d52..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f031k6.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F031K6 - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U0673FF545656726767125017 -I0 -O10446 -S0 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F0xx_32.FLM -FS08000000 -FL08000 -FP0($$Device:STM32F031K6$Flash\STM32F0xx_32.FLM) - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F0xx_32 -FS08000000 -FL08000 -FP0($$Device:STM32F031K6$Flash\STM32F0xx_32.FLM)) - - - 0 - ULP2CM3 - -U -O207 -S8 -C0 -P00 -TO18 -TC10000000 -TP18 -TDX0 -TDD0 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f031k6.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f031k6.uvproj.tmpl deleted file mode 100644 index 3f979007ad..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f031k6.uvproj.tmpl +++ /dev/null @@ -1,440 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F031K6 - 0x4 - ARM-ADS - - - STM32F031K6 - STMicroelectronics - Keil.STM32F0xx_DFP.1.4.0 - http://www.keil.com/pack/ - IRAM(0x20000000-0x20000FFF) IROM(0x8000000-0x8007FFF) CLOCK(8000000) CPUTYPE("Cortex-M0") - - "Startup\ST\STM32F0xx\startup_stm32f031.s" ("STM32F031 Startup Code") - UL2CM3(-O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F0xx_32 -FS08000000 -FL08000) - 6560 - stm32f0xx.h - - - - - - - -DSTM32F031 - - - SFD\ST\STM32F0xx\STM32F0xx.sfr - 0 - 0 - - - - ST\STM32F0xx\ - ST\STM32F0xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F031K6.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x1000 - - - 1 - 0x8000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x10000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f042k6.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f042k6.uvopt.tmpl deleted file mode 100644 index b32e88d6bc..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f042k6.uvopt.tmpl +++ /dev/null @@ -1,200 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - 0 - - - - 0 - 0 - - - - mbed_NUCLEO_F042K6 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 0 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 18 - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U066EFF575256867067012050 -O206 -S1 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO7 -FD20000000 -FC1000 -FN1 -FF0STM32F0xx_32.FLM -FS08000000 -FL08000 -FP0($$Device:STM32F042K6$Flash\STM32F0xx_32.FLM) - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32F0xx_32 -FL08000 -FS08000000 -FP0($$Device:STM32F042K6$Flash\STM32F0xx_32.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - 0 - - - - - src - 0 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f042k6.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f042k6.uvproj.tmpl deleted file mode 100644 index 13b2917f3e..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f042k6.uvproj.tmpl +++ /dev/null @@ -1,455 +0,0 @@ - - - - 2.1 - -
### uVision Project, (C) Keil Software
- - - - mbed_NUCLEO_F042K6 - 0x4 - ARM-ADS - 5060020::V5.06 (build 20)::ARMCC - - - STM32F042K6 - STMicroelectronics - Keil.STM32F0xx_DFP.1.4.0 - http://www.keil.com/pack/ - IROM(0x08000000,0x8000) IRAM(0x20000000,0x1800) CPUTYPE("Cortex-M0") CLOCK(12000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F0xx_32 -FS08000000 -FL08000 -FP0($$Device:STM32F042K6$Flash\STM32F0xx_32.FLM)) - 0 - $$Device:STM32F042K6$Device\Include\stm32f0xx.h - - - - - - - - - - $$Device:STM32F042K6$SVD\STM32F042x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F042K6.bin build\{{name}}.axf - - 0 - 0 - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x1800 - - - 1 - 0x8000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x8000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x1800 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f070rb.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f070rb.uvopt.tmpl deleted file mode 100644 index 93bb1e6e08..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f070rb.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F070RB - 0x4 - ARM-ADS - - 48000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O207 -O207 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F05x_128 -FS08000000 -FL020000 - - - 0 - UL2CM3 - -O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F0xx_128 -FS08000000 -FL020000) - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f070rb.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f070rb.uvproj.tmpl deleted file mode 100644 index cab2b4dd93..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f070rb.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F070RB - 0x4 - ARM-ADS - - - STM32F070RB - STMicroelectronics - IRAM(0x20000000-0x20003FFF) IROM(0x08000000-0x0801FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0") - - "Startup\ST\STM32F0xx\startup_stm32f070.s" ("STM32F070 Startup Code") - UL2CM3(-O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F0xx_128 -FS08000000 -FL020000) - 7471 - stm32f0xx.h - - - - - - - - - - SFD\ST\STM32F0xx\STM32F070x.SFR - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F070RB.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x8000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f072rb.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f072rb.uvopt.tmpl deleted file mode 100644 index 37e8f8834d..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f072rb.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F072RB - 0x4 - ARM-ADS - - 48000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O207 -O207 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F05x_128 -FS08000000 -FL020000 - - - 0 - UL2CM3 - -O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F0xx_128 -FS08000000 -FL020000) - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f072rb.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f072rb.uvproj.tmpl deleted file mode 100644 index 6b7adb144f..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f072rb.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F072RB - 0x4 - ARM-ADS - - - STM32F072RB - STMicroelectronics - IRAM(0x20000000-0x20003FFF) IROM(0x08000000-0x0801FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0") - - "Startup\ST\STM32F0xx\startup_stm32f072.s" ("STM32F072 Startup Code") - UL2CM3(-O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F0xx_128 -FS08000000 -FL020000) - 7471 - stm32f0xx.h - - - - - - - - - - SFD\ST\STM32F0xx\STM32F072x.SFR - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F072RB.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x8000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f091rc.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f091rc.uvopt.tmpl deleted file mode 100644 index be5ade34b4..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f091rc.uvopt.tmpl +++ /dev/null @@ -1,211 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F091RC - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U -O8399 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F0xx_128 -FS08000000 -FL020000 -FP0($$Device:STM32F072RB$Flash\STM32F0xx_128.FLM) - - - 0 - UL2CM3 - -O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F0xx_128 -FS08000000 -FL020000) - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f091rc.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f091rc.uvproj.tmpl deleted file mode 100644 index f8f5434a1d..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f091rc.uvproj.tmpl +++ /dev/null @@ -1,448 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F091RC - 0x4 - ARM-ADS - - - STM32F072RB - STMicroelectronics - IRAM(0x20000000-0x20003FFF) IROM(0x08000000-0x0801FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0") - - "Startup\ST\STM32F0xx\startup_stm32f072.s" ("STM32F072 Startup Code") - UL2CM3(-O207 -S0 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F0xx_128 -FS08000000 -FL020000) - 7471 - stm32f0xx.h - - - - - - - - - - SFD\ST\STM32F0xx\STM32F072x.SFR - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F091RC.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x8000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f103rb.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f103rb.uvopt.tmpl deleted file mode 100644 index 2a24273e7b..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f103rb.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F103RB - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - - DARMSTM.DLL - -pSTM32F103RB - SARMCM3.DLL - - TARMSTM.DLL - -pSTM32F103RB - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(100=-1,-1,-1,-1,0)(110=-1,-1,-1,-1,0)(111=-1,-1,-1,-1,0)(1011=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(120=-1,-1,-1,-1,0)(121=-1,-1,-1,-1,0)(122=-1,-1,-1,-1,0)(123=-1,-1,-1,-1,0)(140=-1,-1,-1,-1,0)(240=-1,-1,-1,-1,0)(190=-1,-1,-1,-1,0)(200=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(130=-1,-1,-1,-1,0)(131=-1,-1,-1,-1,0)(132=-1,-1,-1,-1,0)(133=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(161=-1,-1,-1,-1,0)(162=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(211=-1,-1,-1,-1,0)(220=-1,-1,-1,-1,0)(221=-1,-1,-1,-1,0)(230=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(151=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S3 -C0 -N00("ARM CoreSight SW-DP") -D00(1BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F10x_128 -FS08000000 -FL020000 - - - 0 - UL2CM3 - UL2CM3(-O14 -S0 -C0 -N00("ARM Cortex-M3") -D00(1BA00477) -L00(4) -FO7 -FN1 -FC800 -FD20000000 -FF0STM32F10x_128 -FL020000 -FS08000000 - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f103rb.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f103rb.uvproj.tmpl deleted file mode 100644 index dcb6507b6a..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f103rb.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F103RB - 0x4 - ARM-ADS - - - STM32F103RB - STMicroelectronics - IRAM(0x20000000-0x20004FFF) IROM(0x8000000-0x801FFFF) CLOCK(8000000) CPUTYPE("Cortex-M3") - - "STARTUP\ST\STM32F10x\startup_stm32f10x_md.s" ("STM32 Medium Density Line Startup Code") - UL2CM3(-O14 -S0 -C0 -N00("ARM Cortex-M3") -D00(1BA00477) -L00(4) -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F10x_128 -FS08000000 -FL020000) - 4231 - stm32f10x.h - - - - - - - - - - SFD\ST\STM32F1xx\STM32F103xx.sfr - 0 - 0 - - - - ST\STM32F10x\ - ST\STM32F10x\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F103RB.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMSTM.DLL - -pSTM32F103RB - SARMCM3.DLL - - TARMSTM.DLL - -pSTM32F103RB - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x5000 - - - 1 - 0x8000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x5000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f302r8.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f302r8.uvopt.tmpl deleted file mode 100644 index 22ababdd4e..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f302r8.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F302R8 - 0x4 - ARM-ADS - - 72000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S3 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL040000 - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32F3xx_256 -FL040000 -FS08000000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f302r8.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f302r8.uvproj.tmpl deleted file mode 100644 index cce8bcbcf2..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f302r8.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F302R8 - 0x4 - ARM-ADS - - - STM32F302RC - STMicroelectronics - IROM(0x08000000,0x40000) IRAM(0x20000000,0x8000) CPUTYPE("Cortex-M4") FPU2 CLOCK(72000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM)) - 6576 - $$Device:STM32F302RC$Device\Include\STM32F30x.h - - - - - - - - - - $$Device:STM32F302RC$SVD\STM32F30x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F302R8.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x8000000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f303k8.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f303k8.uvopt.tmpl deleted file mode 100644 index 21ff215a70..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f303k8.uvopt.tmpl +++ /dev/null @@ -1,213 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F303K8 - 0x4 - ARM-ADS - - 72000000 - - 1 - 1 - 0 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 0 - 0 - 1 - - 18 - - - 0 - STM32F3-Discovery Web Page (STM32F3-Discovery) - http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/PF254044 - - - 1 - STM32303C-EVAL Web Page (STM32303C-EVAL) - http://www.st.com/web/en/catalog/tools/PF252996 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U0667FF575256867067021844 -O206 -S1 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO7 -FD20000000 -FC1000 -FN1 -FF0STM32F3xx_256.FLM -FS08000000 -FL010000 -FP0($$Device:STM32F303K8$Flash\STM32F3xx_256.FLM) - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL010000 -FP0($$Device:STM32F303K8$Flash\STM32F3xx_256.FLM)) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f303k8.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f303k8.uvproj.tmpl deleted file mode 100644 index 18843b0b6e..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f303k8.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F303K8 - 0x4 - ARM-ADS - - - STM32F303K8 - STMicroelectronics - IROM(0x08000000,0x00010000) IRAM(0x20000000,0x00003000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL010000 -FP0($$Device:STM32F303K8$Flash\STM32F3xx_256.FLM)) - 0 - $$Device:STM32F303K8$Device\Include\stm32f3xx.h - - - - - - - - - - $$Device:STM32F303K8$SVD\STM32F303x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F303K8.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x3000 - - - 1 - 0x8000000 - 0x10000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x10000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x3000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f303re.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f303re.uvopt.tmpl deleted file mode 100644 index 426647dbc4..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f303re.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F303RE - 0x4 - ARM-ADS - - 72000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S3 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL040000 - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32F3xx_256 -FL040000 -FS08000000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f303re.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f303re.uvproj.tmpl deleted file mode 100644 index 78e6346584..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f303re.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F303RE - 0x4 - ARM-ADS - - - STM32F303RE - STMicroelectronics - IROM(0x08000000,0x40000) IRAM(0x20000000,0x8000) CPUTYPE("Cortex-M4") FPU2 CLOCK(72000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM)) - 6576 - $$Device:STM32F302RC$Device\Include\STM32F30x.h - - - - - - - - - - $$Device:STM32F302RC$SVD\STM32F30x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F303RE.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x8000000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f334r8.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f334r8.uvopt.tmpl deleted file mode 100644 index e03b57fb01..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f334r8.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F334R8 - 0x4 - ARM-ADS - - 72000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U -O206 -S3 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32F3xx_256.FLM -FS08000000 -FL040000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM) - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32F3xx_256 -FL040000 -FS08000000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f334r8.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f334r8.uvproj.tmpl deleted file mode 100644 index 5d00b8d1ab..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f334r8.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F334R8 - 0x4 - ARM-ADS - - - STM32F334R8 - STMicroelectronics - IROM(0x08000000,0x40000) IRAM(0x20000000,0x8000) CPUTYPE("Cortex-M4") FPU2 CLOCK(72000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F3xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F302RC$Flash\STM32F3xx_256.FLM)) - 6576 - $$Device:STM32F302RC$Device\Include\STM32F30x.h - - - - - - - - - - $$Device:STM32F302RC$SVD\STM32F30x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F334R8.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x8000000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f401re.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f401re.uvopt.tmpl deleted file mode 100644 index e6898281be..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f401re.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F401RE - 0x4 - ARM-ADS - - 84000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_256.FLM -FS08000000 -FL040000 -FP0($$Device:STM32F401RC$Flash\STM32F4xx_256.FLM) - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F401RC$Flash\STM32F4xx_256.FLM)) - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f401re.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f401re.uvproj.tmpl deleted file mode 100644 index f65b87e527..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f401re.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F401RE - 0x4 - ARM-ADS - - - STM32F401RC - STMicroelectronics - IROM(0x08000000,0x40000) IRAM(0x20000000,0x10000) CPUTYPE("Cortex-M4") FPU2 CLOCK(84000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F401RC$Flash\STM32F4xx_256.FLM)) - 7383 - $$Device:STM32F401RC$Device\Include\stm32f4xx.h - - - - - - - - - - $$Device:STM32F401RC$SVD\STM32F40x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F401RE.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x10000 - - - 1 - 0x8000000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x10000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f410rb.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f410rb.uvopt.tmpl deleted file mode 100644 index 209a893bb5..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f410rb.uvopt.tmpl +++ /dev/null @@ -1,185 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - 0 - - - - 0 - 0 - - - - mbed NUCLEO_F410RB - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 0 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 18 - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - ST-LINKIII-KEIL_SWO - -U0674FF515456707067162854 -O206 -S1 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_128.FLM -FS08000000 -FL020000 -FP0($$Device:STM32F410RBTx$CMSIS\Flash\STM32F4xx_128.FLM) - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32F4xx_128 -FL020000 -FS08000000 -FP0($$Device:STM32F410RBTx$CMSIS\Flash\STM32F4xx_128.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - 0 - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f410rb.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f410rb.uvproj.tmpl deleted file mode 100644 index 3460f7a1af..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f410rb.uvproj.tmpl +++ /dev/null @@ -1,456 +0,0 @@ - - - - 2.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F410RB - 0x4 - ARM-ADS - 5060020::V5.06 (build 20)::ARMCC - - - STM32F410RBTx - STMicroelectronics - Keil.STM32F4xx_DFP.2.6.0 - http://www.keil.com/pack - IROM(0x08000000,0x20000) IRAM(0x20000000,0x8000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_128 -FS08000000 -FL020000 -FP0($$Device:STM32F410RBTx$CMSIS\Flash\STM32F4xx_128.FLM)) - 0 - $$Device:STM32F410RBTx$Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - - - - - - - - - - $$Device:STM32F410RBTx$CMSIS\SVD\STM32F410xx.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F410RB.bin build\{{name}}.axf - - 0 - 0 - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 0 - 0 - 8 - 1 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x8000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f411re.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f411re.uvopt.tmpl deleted file mode 100644 index 8c93eca457..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f411re.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F411RE - 0x4 - ARM-ADS - - 84000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_512 -FS08000000 -FL080000 - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F401RC$Flash\STM32F4xx_256.FLM)) - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f411re.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f411re.uvproj.tmpl deleted file mode 100644 index eb237f2489..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f411re.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F411RE - 0x4 - ARM-ADS - - - STM32F401RC - STMicroelectronics - IROM(0x08000000,0x40000) IRAM(0x20000000,0x10000) CPUTYPE("Cortex-M4") FPU2 CLOCK(84000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F401RC$Flash\STM32F4xx_256.FLM)) - 7383 - $$Device:STM32F401RC$Device\Include\stm32f4xx.h - - - - - - - - - - $$Device:STM32F401RC$SVD\STM32F40x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F411RE.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 1 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x10000 - - - 1 - 0x8000000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x10000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f446re.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f446re.uvopt.tmpl deleted file mode 100644 index 1f8db8f53f..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f446re.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_F446RE - 0x4 - ARM-ADS - - 84000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_512 -FS08000000 -FL080000 - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_256 -FS08000000 -FL040000 -FP0($$Device:STM32F401RC$Flash\STM32F4xx_256.FLM)) - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FN1 -FC800 -FD20000000 -FF0MK_P128_48MHZ -FL020000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f446re.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f446re.uvproj.tmpl deleted file mode 100644 index 96bea69ff5..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f446re.uvproj.tmpl +++ /dev/null @@ -1,440 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_F446RE - 0x4 - ARM-ADS - - - STM32F446RETx - STMicroelectronics - Keil.STM32F4xx_DFP.2.5.0 - http://www.keil.com/pack - IROM(0x08000000,0x80000) IRAM(0x20000000,0x20000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F4xx_512 -FS08000000 -FL080000 -FP0($$Device:STM32F446RETx$CMSIS\Flash\STM32F4xx_512.FLM)) - 0 - $$Device:STM32F446RETx$Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - - - - - - - - - - $$Device:STM32F446RETx$CMSIS\SVD\STM32F446x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_F446RE.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 1 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 1 - 0x8000000 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x80000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x20000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f746zg.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_f746zg.uvopt.tmpl deleted file mode 100644 index 4df60993ac..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f746zg.uvopt.tmpl +++ /dev/null @@ -1,185 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - 0 - - - - 0 - 0 - - - - STM32F746ZG - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 0 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 18 - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN2 -FF0STM32F7x_1024 -FS08000000 -FL0100000 -FF1STM32F7x_TCM -FS1200000 -FL1100000 -FP0($$Device:STM32F756IG$Flash\STM32F7x_1024.FLM) -FP1($$Device:STM32F756IG$Flash\STM32F7x_TCM.FLM)) - - - 0 - ST-LINKIII-KEIL_SWO - -U066EFF535651727067055449 -O2254 -S0 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(5BA02477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32F7x_1024 -FS08000000 -FL0100000 -FP0($$Device:STM32F746ZG$CMSIS\Flash\STM32F7x_1024.FLM) - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - 0 - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 1 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_f746zg.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_f746zg.uvproj.tmpl deleted file mode 100644 index 82dc736b7d..0000000000 --- a/workspace_tools/export/uvision4_nucleo_f746zg.uvproj.tmpl +++ /dev/null @@ -1,446 +0,0 @@ - - - - 2.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - STM32F746ZG - 0x4 - ARM-ADS - - - STM32F746ZG - STMicroelectronics - Keil.STM32F7xx_DFP.1.0.0 - http://www.keil.com/pack - IROM(0x08000000-0x080FFFFF) IRAM(0x20000000-0x2004FFFF) CPUTYPE("Cortex-M7") FPU3(SFPU) CLOCK(12000000) ELITTLE - - - - - - - - - - - - - - - $$Device:STM32F756IG$CMSIS\SVD\STM32F7x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_STM32F746ZG.bin build\{{name}}.axf - - 0 - 0 - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 0 - - - SARMCM3.DLL - -REMAP - DCM.DLL - -pCM7 - SARMCM3.DLL - - TCM.DLL - -pCM7 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4107 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M7" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 2 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x50000 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x50000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - --any_placement=first_fit - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_l053r8.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_l053r8.uvopt.tmpl deleted file mode 100644 index 6f58e6da83..0000000000 --- a/workspace_tools/export/uvision4_nucleo_l053r8.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_L053R8 - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - -MPU - TARMCM1.DLL - -pCM0+ - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ULP2CM3 - -O207 -S8 -C0 -FO7 -F2000 -FN1 -FD20000000 -FF0STM32L0xx_64 -FL020000 -FS08000000 - - - 0 - ST-LINKIII-KEIL_SWO - -U-O207 -O207 -S8 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L0x_64 -FS08000000 -FL010000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_l053r8.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_l053r8.uvproj.tmpl deleted file mode 100644 index b19b0feea8..0000000000 --- a/workspace_tools/export/uvision4_nucleo_l053r8.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_L053R8 - 0x4 - ARM-ADS - - - STM32L053R8 - STMicroelectronics - IRAM(0x20000000-0x20001FFF) IROM(0x8000000-0x800FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") - - - ULP2CM3(-O207 -S8 -C0 -FO7 -FD20000000 -F2000 -FN1 -FF0STM32L0xx_64 -FS08000000 -FL020000) - 0 - - - - - - - - - - - - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_L053R8.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -MPU - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - -MPU - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4100 - - 1 - BIN\ULP2CM3.DLL - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 1 - 0x8000000 - 0x10000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x10000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x2000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_l073rz.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_l073rz.uvopt.tmpl deleted file mode 100644 index 057eb65568..0000000000 --- a/workspace_tools/export/uvision4_nucleo_l073rz.uvopt.tmpl +++ /dev/null @@ -1,208 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_L073RZ - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 0 - 1 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - -MPU - TARMCM1.DLL - -pCM0+ - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ULP2CM3 - -O207 -S8 -C0 -FO7 -FD20000000 -F5000 -FN1 -FF0STM32L0xx_192 -FS08000000 -FL030000) - - - 0 - ST-LINKIII-KEIL_SWO - -U -O207 -S8 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L0xx_192 -FS08000000 -FL030000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_l073rz.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_l073rz.uvproj.tmpl deleted file mode 100644 index bdc306e537..0000000000 --- a/workspace_tools/export/uvision4_nucleo_l073rz.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_L073RZ - 0x4 - ARM-ADS - - - STM32L073RZ - STMicroelectronics - IRAM(0x20000000-0x20004FFF) IROM(0x8000000-0x802FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") - - - ULP2CM3(-O207 -S8 -C0 -FO7 -FD20000000 -F5000 -FN1 -FF0STM32L0xx_192 -FS08000000 -FL030000) - 0 - - - - - - - - - - - - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_L073RZ.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -MPU - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - -MPU - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4100 - - 1 - BIN\ULP2CM3.DLL - - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x5000 - - - 1 - 0x8000000 - 0x30000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x30000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x5000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x08000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_l152re.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_l152re.uvopt.tmpl deleted file mode 100644 index a2bf47073d..0000000000 --- a/workspace_tools/export/uvision4_nucleo_l152re.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_L152RE - 0x4 - ARM-ADS - - 32000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U-O206 -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32L1xx_384.FLM -FS08000000 -FL060000 -FP0($$Device:STM32L152RD$Flash\STM32L1xx_384.FLM) - - - 0 - UL2CM3 - UL2CM3(-O14 -S0 -C0 -N00("ARM Cortex-M3") -D00(1BA00477) -L00(4) -FO7 -FN1 -FC1000 -FD20000000 -FF0STM32L1xx_384 -FL060000 -FS08000000 -FP0($$Device:STM32L152RD$Flash\STM32L1xx_384.FLM) - - - 0 - ULP2CM3 - -U -O207 -S8 -C0 -P00 -TO18 -TC10000000 -TP18 -TDX0 -TDD0 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_l152re.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_l152re.uvproj.tmpl deleted file mode 100644 index 48756bacc3..0000000000 --- a/workspace_tools/export/uvision4_nucleo_l152re.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_L152RE - 0x4 - ARM-ADS - - - STM32L152RD - STMicroelectronics - IROM(0x08000000,0x60000) IRAM(0x20000000,0xC000) CPUTYPE("Cortex-M3") CLOCK(32000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32L1xx_384 -FS08000000 -FL060000 -FP0($$Device:STM32L152RD$Flash\STM32L1xx_384.FLM)) - 6512 - $$Device:STM32L152RD$Device\Include\STM32L1xx.h - - - - - - - - - - $$Device:STM32L152RD$SVD\STM32L15x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_L152RE.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0xc000 - - - 1 - 0x8000000 - 0x60000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x60000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0xc000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_l476rg.uvopt.tmpl b/workspace_tools/export/uvision4_nucleo_l476rg.uvopt.tmpl deleted file mode 100644 index 102a2da591..0000000000 --- a/workspace_tools/export/uvision4_nucleo_l476rg.uvopt.tmpl +++ /dev/null @@ -1,211 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NUCLEO_L476RG - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 1 - 0 - 0 - 11 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U0672FF535157876667210741 -O2287 -S0 -C0 -A0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32L4xx_1024 -FS08000000 -FL0100000 -FP0($$Device:STM32L476RG$Flash\STM32L4xx_1024.FLM) - - - 0 - UL2CM3 - -S0 -C0 -P0 ) -FN1 -FC1000 -FD20000000 -FF0STM32L4xx -FL0100000 -FS08000000 -FP0($$Device:STM32L476RG$Flash\STM32L4xx.FLM) - - - 0 - ULP2CM3 - -U -O207 -S8 -C0 -P00 -TO18 -TC10000000 -TP18 -TDX0 -TDD0 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nucleo_l476rg.uvproj.tmpl b/workspace_tools/export/uvision4_nucleo_l476rg.uvproj.tmpl deleted file mode 100644 index d84c5a58fb..0000000000 --- a/workspace_tools/export/uvision4_nucleo_l476rg.uvproj.tmpl +++ /dev/null @@ -1,440 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NUCLEO_L476RG - 0x4 - ARM-ADS - - - STM32L476RG - STMicroelectronics - Keil.STM32L4xx_DFP.1.0.0 - http://www.keil.com/pack - IROM(0x08000000,0x100000) IRAM(0x20000000,0x18000) CPUTYPE("Cortex-M4") FPU2 CLOCK(12000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32L4xx -FS08000000 -FL0100000 -FP0($$Device:STM32L476RG$Flash\STM32L4xx.FLM)) - 0 - $$Device:STM32L476RG$Device\Include\stm32l4xx.h - - - - - - - - - - $$Device:STM32L476RG$SVD\STM32L4x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NUCLEO_L476RG.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 11 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4096 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x18000 - - - 1 - 0x8000000 - 0x100000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x100000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x18000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_nz32_sc151.uvopt.tmpl b/workspace_tools/export/uvision4_nz32_sc151.uvopt.tmpl deleted file mode 100644 index 729a112271..0000000000 --- a/workspace_tools/export/uvision4_nz32_sc151.uvopt.tmpl +++ /dev/null @@ -1,218 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NZ32_SC151 - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 255 - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 13 - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - (105=-1,-1,-1,-1,0) - - - 0 - ST-LINKIII-KEIL_SWO - -U -O206 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC1000 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000 - - - 0 - UL2CM3 - UL2CM3(-O14 -S0 -C0 -N00("ARM Cortex-M3") -D00(1BA00477) -L00(4) -FO7 -FN1 -FC1000 -FD20000000 -FF0STM32L1xx_384 -FL060000 -FS08000000 -FP0($$Device:STM32L151RC$Flash\STM32L1xx_384.FLM) - - - 0 - ULP2CM3 - -U -O207 -S8 -C0 -P00 -TO18 -TC10000000 -TP18 -TDX0 -TDD0 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD20000000 -FC800 -FN1 -FF0STM32L1xx_256 -FS08000000 -FL040000 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000 - - - - - 0 - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - main.cpp - main.cpp - 0 - 0 - - - -
diff --git a/workspace_tools/export/uvision4_nz32_sc151.uvproj.tmpl b/workspace_tools/export/uvision4_nz32_sc151.uvproj.tmpl deleted file mode 100644 index 01333d96d6..0000000000 --- a/workspace_tools/export/uvision4_nz32_sc151.uvproj.tmpl +++ /dev/null @@ -1,438 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - mbed NZ32_SC151 - 0x4 - ARM-ADS - - - STM32L151RC - STMicroelectronics - IRAM(0x20000000-0x20007FFF) IROM(0x8000000-0x803FFFF) CLOCK(8000000) CPUTYPE("Cortex-M3") - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32L1xx_384 -FS08000000 -FL060000 -FP0($$Device:STM32L151RC$Flash\STM32L1xx_384.FLM)) - 6524 - $$Device:STM32L151RC$Device\Include\STM32L1xx.h - - - - - - - - - - $$Device:STM32L151RC$SVD\STM32L15x.svd - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_NZ32_SC151.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - -REMAP -MPU - DCM.DLL - -pCM3 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM3 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - - 0 - 13 - - - - - - - - - - - - - - STLink\ST-LINKIII-KEIL_SWO.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4103 - - 1 - STLink\ST-LINKIII-KEIL_SWO.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x8000000 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x8000000 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - - - 2 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_rblab_nrf51822.uvopt.tmpl b/workspace_tools/export/uvision4_rblab_nrf51822.uvopt.tmpl deleted file mode 100644 index 2d8cbbceb0..0000000000 --- a/workspace_tools/export/uvision4_rblab_nrf51822.uvopt.tmpl +++ /dev/null @@ -1,214 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - nRF51822AA - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 12 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - JL2CM3 - -U480204337 -O78 -S0 -A0 -C0 -JU1 -JI127.0.0.1 -JP0 -RST0 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8004 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -TB1 -TFE0 -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - 0 - UL2CM3 - -S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51$Flash\nrf51xxx.flm)) - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - DLGUARM - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U107002011FE6E019E2180F91 -O718 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO31 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx.flm -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm) - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_rblab_nrf51822.uvproj.tmpl b/workspace_tools/export/uvision4_rblab_nrf51822.uvproj.tmpl deleted file mode 100644 index 713e1412bd..0000000000 --- a/workspace_tools/export/uvision4_rblab_nrf51822.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - nRF51822AA - 0x4 - ARM-ADS - - - nRF51xxx - Nordic Semiconductor - IROM(0x00000000,0x40000) IRAM(0x20000000,0x4000) CPUTYPE("Cortex-M0") CLOCK(16000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm)) - 0 - $$Device:nRF51xxx$Device\Include\nrf.h - - - - - - - - - - $$Device:nRF51xxx$SVD\nrf51.xml - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\UL2CM3.DLL - - - - - 1 - 0 - 0 - 0 - 1 - 4096 - - 1 - BIN\UL2CM3.DLL - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_samd21g18a.uvopt.tmpl b/workspace_tools/export/uvision4_samd21g18a.uvopt.tmpl deleted file mode 100644 index 2b51d83533..0000000000 --- a/workspace_tools/export/uvision4_samd21g18a.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed SAMD21J18A - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 14 - - - 0 - Datasheet - datashts\Atmel\SAMD21\NotYetAvailable.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - UL2CM3 - UL2CM3(-O207 -O207 -S9 -C0 -FO7 -FN1 -FC800 -FD20000000 -FF0ATSAMD21_256 -FL040000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_samd21g18a.uvproj.tmpl b/workspace_tools/export/uvision4_samd21g18a.uvproj.tmpl deleted file mode 100644 index 9ee921c987..0000000000 --- a/workspace_tools/export/uvision4_samd21g18a.uvproj.tmpl +++ /dev/null @@ -1,424 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - SAMD21G18A - 0x4 - ARM-ADS - - - SAMR21G18A - Atmel - IRAM(0x20000000-0x20007FFF) IROM(0x00000000-0x0003FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") - - "Startup\Atmel\SAMD21\startup_SAMD21.s" ("Atmel SAMD21 Startup Code") - UL2CM3(-O207 -S9 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0ATSAMD21_256 -FS00 -FL040000) - 7341 - samd21.h - - - - - - - -D__SAMD21G18A__ - - - SFD\Atmel\SAMD21\ATSAMD21G18A.SFR - 0 - 0 - - - - Atmel\SAMD21\ - Atmel\SAMD21\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_SAMD21G18A.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_samd21j18a.uvopt.tmpl b/workspace_tools/export/uvision4_samd21j18a.uvopt.tmpl deleted file mode 100644 index 7534de7329..0000000000 --- a/workspace_tools/export/uvision4_samd21j18a.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed SAMD21G18A - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 16 - - - 0 - Datasheet - datashts\Atmel\SAMD21\NotYetAvailable.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - UL2CM3 - UL2CM3(-O207 -O207 -S9 -C0 -FO7 -FN1 -FC800 -FD20000000 -FF0ATSAMD21_256 -FL040000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_samd21j18a.uvproj.tmpl b/workspace_tools/export/uvision4_samd21j18a.uvproj.tmpl deleted file mode 100644 index b623074161..0000000000 --- a/workspace_tools/export/uvision4_samd21j18a.uvproj.tmpl +++ /dev/null @@ -1,424 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - SAMD21G18A - 0x4 - ARM-ADS - - - SAMD21J18A - Atmel - IRAM(0x20000000-0x20007FFF) IROM(0x00000000-0x0003FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") - - "Startup\Atmel\SAMD21\startup_SAMD21.s" ("Atmel SAMD21 Startup Code") - UL2CM3(-O207 -S9 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0ATSAMD21_256 -FS00 -FL040000) - 7346 - samd21.h - - - - - - - -D__SAMD21J18A__ - - - SFD\Atmel\SAMD21\ATSAMD21J18A.SFR - 0 - 0 - - - - Atmel\SAMD21\ - Atmel\SAMD21\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_SAMD21G18A.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_saml21j18a.uvopt.tmpl b/workspace_tools/export/uvision4_saml21j18a.uvopt.tmpl deleted file mode 100644 index 9c442fc333..0000000000 --- a/workspace_tools/export/uvision4_saml21j18a.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed SAML21G18A - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 16 - - - 0 - Datasheet - datashts\Atmel\SAML21\NotYetAvailable.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - UL2CM3 - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN2 -FF0ATSAML21_256 -FS00 -FL040000 -FF1ATSAML21_256_EEPROM -FS1400000 -FL12000 -FP0($$Device:ATSAML21J18A$Flash\ATSAML21_256.FLM) -FP1($$Device:ATSAML21J18A$Flash\ATSAML21_256_EEPROM.FLM)) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_saml21j18a.uvproj.tmpl b/workspace_tools/export/uvision4_saml21j18a.uvproj.tmpl deleted file mode 100644 index 1f195bd68f..0000000000 --- a/workspace_tools/export/uvision4_saml21j18a.uvproj.tmpl +++ /dev/null @@ -1,424 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - SAMD21G18A - 0x4 - ARM-ADS - - - ATSAML21J18A - Atmel - IROM(0x00000000,0x40000) IRAM(0x20000000,0x08000) IRAM2(0x30000000,0x02000) CPUTYPE("Cortex-M0+") CLOCK(12000000) ELITTLE - - "Startup\Atmel\SAMD21\startup_SAMD21.s" ("Atmel SAMD21 Startup Code") - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN2 -FF0ATSAML21_256 -FS00 -FL040000 -FF1ATSAML21_256_EEPROM -FS1400000 -FL12000 -FP0($$Device:ATSAML21J18A$Flash\ATSAML21_256.FLM) -FP1($$Device:ATSAML21J18A$Flash\ATSAML21_256_EEPROM.FLM)) - 7346 - $$Device:ATSAML21J18A$Device\SAML21\Include\saml21.h - - - - - - - -D__SAML21J18A__ - - - $$Device:ATSAML21J18A$SVD\SAML21\ATSAML21J18A.svd - 0 - 0 - - - - Atmel\SAMD21\ - Atmel\SAMD21\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_SAMD21G18A.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_samr21g18a.uvopt.tmpl b/workspace_tools/export/uvision4_samr21g18a.uvopt.tmpl deleted file mode 100644 index 94d61c23b4..0000000000 --- a/workspace_tools/export/uvision4_samr21g18a.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed SAMR21G18A - 0x4 - ARM-ADS - - 8000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 14 - - - 0 - Datasheet - datashts\Atmel\SAMD21\NotYetAvailable.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - ULP2CM3 - -O207 -O207 -S9 -C0 -FO7 -FN1 -FC800 -FD20000000 -FF0ATSAMR21_256 -FL040000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P256_48MHZ -FS00 -FL040000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_samr21g18a.uvproj.tmpl b/workspace_tools/export/uvision4_samr21g18a.uvproj.tmpl deleted file mode 100644 index c400145e37..0000000000 --- a/workspace_tools/export/uvision4_samr21g18a.uvproj.tmpl +++ /dev/null @@ -1,424 +0,0 @@ - - - - 1.1 - -
### uVision Project, (C) Keil Software
- - - - SAMR21G18A - 0x4 - ARM-ADS - - - SAMR21G18A - Atmel - IRAM(0x20000000-0x20007FFF) IROM(0x00000000-0x0003FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") - - "Startup\Atmel\SAMR21\startup_SAMR21.s" ("Atmel SAMR21 Startup Code") - UL2CM3(-O207 -S9 -C0 -FO7 -FD20000000 -FC800 -FN1 -FF0ATSAMR21_256 -FS00 -FL040000) - 7537 - samr21.h - - - - - - - -D__SAMR21G18A__ - - - SFD\Atmel\SAMR21\ATSAMR21G18A.SFR - 0 - 0 - - - - Atmel\SAMR21\ - Atmel\SAMR21\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_SAMR21G18A.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x8000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x20000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_seeed_tiny_ble.uvopt.tmpl b/workspace_tools/export/uvision4_seeed_tiny_ble.uvopt.tmpl deleted file mode 100644 index 551f334253..0000000000 --- a/workspace_tools/export/uvision4_seeed_tiny_ble.uvopt.tmpl +++ /dev/null @@ -1,184 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - nRF51822AA - 0x4 - ARM-ADS - - 16000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 1 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U -O718 -S0 -C0 -P00 -N00("ARM CoreSight SW-DP") -D00(0BB11477) -L00(0) -FO15 -FD20000000 -FC2000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_seeed_tiny_ble.uvproj.tmpl b/workspace_tools/export/uvision4_seeed_tiny_ble.uvproj.tmpl deleted file mode 100644 index 73dc07cdc6..0000000000 --- a/workspace_tools/export/uvision4_seeed_tiny_ble.uvproj.tmpl +++ /dev/null @@ -1,431 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - nRF51822AA - 0x4 - ARM-ADS - - - nRF51822_xxAA - Nordic Semiconductor - IROM(0x00000000,0x40000) IRAM(0x20000000,0x4000) CPUTYPE("Cortex-M0") CLOCK(16000000) ELITTLE - - - UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0nrf51xxx -FS00 -FL0200000 -FP0($$Device:nRF51xxx$Flash\nrf51xxx.flm)) - 0 - $$Device:nRF51xxx$Device\Include\nrf.h - - - - - - - - - - $$Device:nRF51xxx$SVD\nrf51.xml - 0 - 0 - - - - - - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - mergehex -m !H {% for hex in hex_files %} {{hex}} {% endfor %} -o $H@H.hex - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - 1 - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0 - SARMCM3.DLL - - TARMCM1.DLL - -pCM0 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 1 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 0 - 1 - 4096 - - 1 - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 1 - 0x0 - 0x40000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x40000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x20000000 - 0x4000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_ssci824.uvopt.tmpl b/workspace_tools/export/uvision4_ssci824.uvopt.tmpl deleted file mode 100644 index 2012e02760..0000000000 --- a/workspace_tools/export/uvision4_ssci824.uvopt.tmpl +++ /dev/null @@ -1,198 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed SSCI824 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 8 - - - 0 - Data Sheet - DATASHTS\NXP\LPC8xx\LPC81XM.pdf - - - 1 - User Manual - DATASHTS\NXP\LPC8xx\UM10601.pdf - - - 2 - Technical Reference Manual - datashts\arm\cortex_m0p\r0p0\DDI0484B_CORTEX_M0P_R0P0_TRM.PDF - - - 3 - Generic User Guide - datashts\arm\cortex_m0p\r0p0\DUI0662A_CORTEX_M0P_R0P0_DGUG.PDF - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - UL2CM3 - UL2CM3(-O4303 -S0 -C0 -FO7 -FN1 -FC800 -FD10000000 -FF0LPC8xx_32 -FL08000 -FS00 - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -U -O4303 -S0 -C0 -P00 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC8xx_32 -FS00 -FL08000 - - - - - 0 - - - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - 0 - - -
diff --git a/workspace_tools/export/uvision4_ssci824.uvproj.tmpl b/workspace_tools/export/uvision4_ssci824.uvproj.tmpl deleted file mode 100644 index 3be00c8677..0000000000 --- a/workspace_tools/export/uvision4_ssci824.uvproj.tmpl +++ /dev/null @@ -1,425 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed SSCI824 - 0x4 - ARM-ADS - - - LPC812M101 - NXP (founded by Philips) - IRAM(0x10000000-0x10001FFF) IROM(0-0x7FFF) CLOCK(12000000) CPUTYPE("Cortex-M0+") - - "STARTUP\NXP\LPC8xx\startup_LPC8xx.s" ("NXP LPC8xx Startup Code") - UL2CM3(-O4303 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC8xx_32 -FS00 -FL08000) - 6712 - LPC8xx.h - - - - - - - - - - SFD\NXP\LPC8xx\LPC800.SFR - 0 - - - - NXP\LPC8xx\ - NXP\LPC8xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_SSCI824.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DARMCM1.DLL - -pCM0+ - SARMCM3.DLL - - TARMCM1.DLL - -pCM0+ - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 0 - -1 - - 1 - BIN\UL2CM3.DLL - - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M0+" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 8 - 1 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 1 - 0x0 - 0x8000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x8000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x2000 - - - 0 - 0x0 - 0x0 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_teensy3_1.uvopt.tmpl b/workspace_tools/export/uvision4_teensy3_1.uvopt.tmpl deleted file mode 100644 index 678b04edee..0000000000 --- a/workspace_tools/export/uvision4_teensy3_1.uvopt.tmpl +++ /dev/null @@ -1,204 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed TEENSY3_1 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 14 - - - 0 - Data Sheet - DATASHTS\Freescale\K20PB.pdf - - - 1 - Technical Reference Manual - datashts\arm\cortex_m4\r0p1\DDI0439C_CORTEX_M4_R0P1_TRM.PDF - - - 2 - Generic User Guide - datashts\arm\cortex_m4\r0p1\DUI0553A_CORTEX_M4_DGUG.PDF - - - - SARMCM3.DLL - - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - ULP2CM3 - -O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_50MHZ -FS00 -FL020000) - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O462 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(0BC11477) -L00(0) -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_50MHZ -FS00 -FL020000 - - - - - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 2 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_teensy3_1.uvproj.tmpl b/workspace_tools/export/uvision4_teensy3_1.uvproj.tmpl deleted file mode 100644 index dd2052b846..0000000000 --- a/workspace_tools/export/uvision4_teensy3_1.uvproj.tmpl +++ /dev/null @@ -1,423 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed TEENSY3_1 - 0x4 - ARM-ADS - - - MK20DX256xxx7 - Freescale - IRAM(0x1FFF8000-0x1FFFFFFF) IRAM2(0x20000000-0x20007FFF) IROM(0x0-0x3FFFF) IROM2(0x10000000-0x10007FFF) CLOCK(12000000) CPUTYPE("Cortex-M4") ELITTLE - - "STARTUP\Freescale\Kinetis\startup_MK20D7.s" ("Freescale MK20Xxxxxxx7 Startup Code") - ULP2CM3(-O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN2 -FF0MK_P256 -FS00 -FL040000 -FF1MK_D32_72MHZ -FS110000000 -FL108000) - 6298 - MK20D7.H - - - - - - - - - - SFD\Freescale\Kinetis\MK20D5.sfr - 0 - - - - Freescale\Kinetis\ - Freescale\Kinetis\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 1 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_K20D5M.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - - DCM.DLL - -pCM4 - SARMCM3.DLL - -MPU - TCM.DLL - -pCM4 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M4" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fffe000 - 0x2000 - - - 1 - 0x0 - 0x20000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x20000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x1fffe000 - 0x2000 - - - 0 - 0x20000000 - 0x2000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
diff --git a/workspace_tools/export/uvision4_ublox_c027.uvopt.tmpl b/workspace_tools/export/uvision4_ublox_c027.uvopt.tmpl deleted file mode 100644 index 91ca45b89c..0000000000 --- a/workspace_tools/export/uvision4_ublox_c027.uvopt.tmpl +++ /dev/null @@ -1,201 +0,0 @@ - - - - 1.0 - -
### uVision Project, (C) Keil Software
- - - *.c - *.s*; *.src; *.a* - *.obj - *.lib - *.txt; *.h; *.inc - *.plm - *.cpp - - - - 0 - 0 - - - - mbed NXP LPC1768 - 0x4 - ARM-ADS - - 12000000 - - 1 - 1 - 1 - 0 - - - 1 - 65535 - 0 - 0 - 0 - - - 79 - 66 - 8 - .\build\ - - - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 0 - 0 - 0 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - - - 1 - 0 - 1 - - 0 - - SARMCM3.DLL - -MPU - DARMP1.DLL - -pLPC1768 - SARMCM3.DLL - -MPU - TARMP1.DLL - -pLPC1768 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 0 - 0 - 14 - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - 0 - CMSIS_AGDI - -X"MBED CMSIS-DAP" -UA000000001 -O4559 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - 0 - DLGUARM - - - - 0 - DLGTARM - (1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(1012=-1,-1,-1,-1,0)(350=-1,-1,-1,-1,0)(250=-1,-1,-1,-1,0)(270=-1,-1,-1,-1,0)(313=-1,-1,-1,-1,0)(291=-1,-1,-1,-1,0)(302=-1,-1,-1,-1,0)(110=-1,-1,-1,-1,0)(113=-1,-1,-1,-1,0)(320=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(330=-1,-1,-1,-1,0)(332=-1,-1,-1,-1,0)(333=-1,-1,-1,-1,0)(334=-1,-1,-1,-1,0)(335=-1,-1,-1,-1,0)(336=-1,-1,-1,-1,0)(345=-1,-1,-1,-1,0)(346=-1,-1,-1,-1,0)(381=-1,-1,-1,-1,0)(382=-1,-1,-1,-1,0)(383=-1,-1,-1,-1,0)(384=-1,-1,-1,-1,0)(197=-1,-1,-1,-1,0)(198=-1,-1,-1,-1,0)(191=-1,-1,-1,-1,0)(192=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(261=-1,-1,-1,-1,0)(262=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(121=-1,-1,-1,-1,0)(122=-1,-1,-1,-1,0)(123=-1,-1,-1,-1,0)(124=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(142=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(400=-1,-1,-1,-1,0)(370=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(280=-1,-1,-1,-1,0)(240=-1,-1,-1,-1,0) - - - 0 - ARMDBGFLAGS - - - - 0 - UL2CM3 - -UV0218BNE -O463 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO19 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO15 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000 - - - - - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - src - 1 - 0 - 0 - - 1 - 1 - 8 - 0 - 0 - 0 - 0 - 1 - 7 - 0 - main.cpp - main.cpp - - - -
diff --git a/workspace_tools/export/uvision4_ublox_c027.uvproj.tmpl b/workspace_tools/export/uvision4_ublox_c027.uvproj.tmpl deleted file mode 100644 index 6fdbbe2419..0000000000 --- a/workspace_tools/export/uvision4_ublox_c027.uvproj.tmpl +++ /dev/null @@ -1,422 +0,0 @@ - - - - 1.1 - -
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
- - - - mbed NXP LPC1768 - 0x4 - ARM-ADS - - - LPC1768 - NXP (founded by Philips) - IRAM(0x10000000-0x10007FFF) IRAM2(0x2007C000-0x20083FFF) IROM(0-0x7FFFF) CLOCK(12000000) CPUTYPE("Cortex-M3") - - "STARTUP\NXP\LPC17xx\startup_LPC17xx.s" ("NXP LPC17xx Startup Code") - UL2CM3(-O463 -S0 -C0 -FO7 -FD10000000 -FC800 -FN1 -FF0LPC_IAP_512 -FS00 -FL080000) - 4868 - LPC17xx.H - - - - - - - - - - 0 - - - - NXP\LPC17xx\ - NXP\LPC17xx\ - - 0 - 0 - 0 - 0 - 1 - - .\build\ - {{name}} - 1 - 0 - 0 - 1 - 1 - .\build\ - 1 - 0 - 0 - - 0 - 0 - - - 0 - 0 - 0 - 0 - - - 0 - 0 - - - 0 - 0 - - - 1 - 0 - fromelf --bin -o build\{{name}}_LPC1768.bin build\{{name}}.axf - - 0 - 0 - - 0 - - - - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 3 - - - - - SARMCM3.DLL - -MPU - DARMP1.DLL - -pLPC1768 - SARMCM3.DLL - -MPU - TARMP1.DLL - -pLPC1768 - - - - 1 - 0 - 0 - 0 - 16 - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - - - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - - 0 - 14 - - - - - - - - - - - - - - BIN\CMSIS_AGDI.dll - - - - - 1 - 0 - 0 - 1 - 1 - 4105 - - BIN\CMSIS_AGDI.dll - "" () - - - - - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 1 - 1 - 0 - 1 - 1 - 0 - 0 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 1 - 0 - 0 - "Cortex-M3" - - 0 - 0 - 0 - 1 - 1 - 0 - 0 - 0 - 1 - 0 - 8 - 0 - 0 - 0 - 3 - 3 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1 - 0 - 0 - 0 - 0 - 1 - 0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x8000 - - - 1 - 0x0 - 0x80000 - - - 0 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x0 - - - 1 - 0x0 - 0x80000 - - - 1 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x0 - 0x0 - - - 0 - 0x10000000 - 0x8000 - - - 0 - 0x2007c000 - 0x8000 - - - - - - 1 - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - {% for flag in flags %}{{flag}} {% endfor %} - {% for s in symbols %} {{s}}, {% endfor %} - - {% for path in include_paths %} {{path}}; {% endfor %} - - - - 1 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - - - - 0 - 0 - 0 - 0 - 1 - 0 - 0x00000000 - 0x10000000 - {{scatter_file}} - - - - {% for file in object_files %} - {{file}} - {% endfor %} - - - - - - - - {% for group,files in source_files %} - - {{group}} - - {% for file in files %} - - {{file.name}} - {{file.type}} - {{file.path}} - {%if file.type == "1" %} - - - - - --c99 - - - - - {% endif %} - - {% endfor %} - - - {% endfor %} - - - - -
From ccdf5b25ed3037eb78d3a2a456d03dec4531e31a Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Thu, 10 Mar 2016 19:52:25 +0100 Subject: [PATCH 04/12] Exporters uvision - add default mbed templates --- workspace_tools/export/uvision.uvproj.tmpl | 434 ++++++++++++++++++ .../export/uvision_microlib.uvproj.tmpl | 418 +++++++++++++++++ workspace_tools/targets.py | 190 ++++---- 3 files changed, 947 insertions(+), 95 deletions(-) create mode 100644 workspace_tools/export/uvision.uvproj.tmpl create mode 100644 workspace_tools/export/uvision_microlib.uvproj.tmpl diff --git a/workspace_tools/export/uvision.uvproj.tmpl b/workspace_tools/export/uvision.uvproj.tmpl new file mode 100644 index 0000000000..9747de758f --- /dev/null +++ b/workspace_tools/export/uvision.uvproj.tmpl @@ -0,0 +1,434 @@ + + + + 1.1 + +
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
+ + + + mbed FRDM-KL25Z + 0x4 + ARM-ADS + + + MKL25Z128xxx4 + Freescale Semiconductor + IRAM(0x1FFFF000-0x1FFFFFFF) IRAM2(0x20000000-0x20002FFF) IROM(0x0-0x1FFFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") ELITTLE + + "STARTUP\Freescale\Kinetis\startup_MKL25Z4.s" ("Freescale MKL25Zxxxxxx4 Startup Code") + ULP2CM3(-O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P128_48MHZ -FS00 -FL020000) + 6533 + MKL25Z4.H + + + + + + + + + + SFD\Freescale\Kinetis\MKL25Z4.sfr + 0 + + + + Freescale\Kinetis\ + Freescale\Kinetis\ + + 0 + 0 + 0 + 0 + 1 + + .\build\ + MBED_11 + 1 + 0 + 0 + 1 + 1 + .\build\ + 1 + 0 + 0 + + 0 + 0 + + + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + + + 1 + 0 + fromelf --bin -o build\MBED_11_KL25Z.bin build\MBED_11.axf + + 0 + 0 + + 0 + + + + 0 + 0 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 3 + + + + + SARMCM3.DLL + + DARMCM1.DLL + -pCM0+ + SARMCM3.DLL + + TARMCM1.DLL + -pCM0+ + + + + 1 + 0 + 0 + 0 + 16 + + + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0 + + + 1 + 1 + 1 + 1 + 1 + 1 + 0 + 1 + + 0 + 14 + + + + + + + + + + + + + + BIN\CMSIS_AGDI.dll + + + + + 1 + 0 + 0 + 1 + 1 + 4105 + + BIN\CMSIS_AGDI.dll + "" () + + + + + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0 + 1 + 1 + 0 + 1 + 1 + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0 + 0 + "Cortex-M0+" + + 0 + 0 + 0 + 1 + 1 + 0 + 0 + 0 + 1 + 0 + 8 + 0 + 0 + 0 + 3 + 3 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 1 + 0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x1ffff000 + 0x1000 + + + 1 + 0x0 + 0x20000 + + + 0 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x20000 + + + 1 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x20000000 + 0x3000 + + + 0 + 0x0 + 0x0 + + + + + + 1 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + --gnu --no_rtti + TARGET_FF_ARDUINO, TARGET_KLXX, TARGET_KL25Z, TARGET_CORTEX_M, TARGET_LIKE_MBED, TARGET_M0P, TARGET_Freescale, TOOLCHAIN_ARM_STD, __MBED__=1, MBED_BUILD_TIMESTAMP=1457625532.98, __CORTEX_M0PLUS, TOOLCHAIN_ARM, TARGET_LIKE_CORTEX_M0, ARM_MATH_CM0PLUS, __ASSERT_MSG, + + .; env; mbed; mbed\TARGET_KL25Z; mbed\TARGET_KL25Z\TARGET_Freescale; mbed\TARGET_KL25Z\TARGET_Freescale\TARGET_KLXX; mbed\TARGET_KL25Z\TARGET_Freescale\TARGET_KLXX\TARGET_KL25Z; mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD; + + + + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + + 0 + 0 + 0 + 0 + 1 + 0 + 0x00000000 + 0x10000000 + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\MKL25Z4.sct + + + + + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\board.o + + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\cmsis_nvic.o + + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\mbed_overrides.o + + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\retarget.o + + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\startup_MKL25Z4.o + + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\sys.o + + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\system_MKL25Z4.o + + mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\mbed.ar + + + + + + + + + + + src + + + + main.cpp + 8 + main.cpp + + + + + test_env.cpp + 8 + env\test_env.cpp + + + + + + + + + + +
diff --git a/workspace_tools/export/uvision_microlib.uvproj.tmpl b/workspace_tools/export/uvision_microlib.uvproj.tmpl new file mode 100644 index 0000000000..bdd647f7a8 --- /dev/null +++ b/workspace_tools/export/uvision_microlib.uvproj.tmpl @@ -0,0 +1,418 @@ + + + + 1.1 + +
###This file was automagically generated by mbed.org. For more information, see http://mbed.org/handbook/Exporting-To-Uvision
+ + + + mbed FRDM-KL05Z + 0x4 + ARM-ADS + + + MKL05Z32xxx4 + Freescale Semiconductor + IRAM(0x1FFFFC00-0x1FFFFFFF) IRAM2(0x20000000-0x20000BFF) IROM(0x0-0x07FFF) CLOCK(8000000) CPUTYPE("Cortex-M0+") ELITTLE + + "STARTUP\Freescale\Kinetis\startup_MKL05Z4.s" ("Freescale MKL05Zxxxxxx4 Startup Code") + ULP2CM3(-O2510 -S0 -C0 -FO15 -FD20000000 -FC800 -FN1 -FF0MK_P32_48MHZ -FS00 -FL08000) + 6544 + MKL05Z4.H + + + + + + + + + + SFD\Freescale\Kinetis\MKL05Z4.sfr + 0 + + + + Freescale\Kinetis\ + Freescale\Kinetis\ + + 0 + 0 + 0 + 0 + 1 + + .\build\ + MBED_11 + 1 + 0 + 0 + 1 + 1 + .\build\ + 1 + 0 + 0 + + 0 + 0 + + + 0 + 0 + 0 + 0 + + + 0 + 0 + + + 0 + 0 + + + 1 + 0 + fromelf --bin -o build\MBED_11_KL05Z.bin build\MBED_11.axf + + 0 + 0 + + 0 + + + + 0 + 0 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 3 + + + + + SARMCM3.DLL + + DARMCM1.DLL + -pCM0+ + SARMCM3.DLL + + TARMCM1.DLL + -pCM0+ + + + + 1 + 0 + 0 + 0 + 16 + + + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0 + + + 1 + 1 + 1 + 1 + 1 + 1 + 0 + 1 + + 0 + 14 + + + + + + + + + + + + + + BIN\CMSIS_AGDI.dll + + + + + 1 + 0 + 0 + 1 + 1 + 4105 + + BIN\CMSIS_AGDI.dll + "" () + + + + + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0 + 1 + 1 + 0 + 1 + 1 + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0 + 0 + "Cortex-M0+" + + 0 + 0 + 0 + 1 + 1 + 0 + 0 + 0 + 1 + 0 + 8 + 1 + 0 + 0 + 3 + 3 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 1 + 0 + 0 + 0 + 0 + 1 + 0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x1ffffc00 + 0x400 + + + 1 + 0x0 + 0x8000 + + + 0 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x0 + + + 1 + 0x0 + 0x8000 + + + 1 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x0 + 0x0 + + + 0 + 0x1ffffc00 + 0x400 + + + 0 + 0x0 + 0x0 + + + + + + 1 + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + --gnu --no_rtti + TARGET_FF_ARDUINO, TARGET_KLXX, TARGET_KL05Z, TARGET_LIKE_MBED, TARGET_CORTEX_M, TOOLCHAIN_ARM_MICRO, TARGET_M0P, TARGET_Freescale, __MBED__=1, MBED_BUILD_TIMESTAMP=1457625545.47, __CORTEX_M0PLUS, TOOLCHAIN_ARM, TARGET_LIKE_CORTEX_M0, ARM_MATH_CM0PLUS, __ASSERT_MSG, + + .; env; mbed; + + + + 1 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + + + + + + + + 0 + 0 + 0 + 0 + 1 + 0 + 0x00000000 + 0x10000000 + None + + + + + + + + + + + + + + src + + + + main.cpp + 8 + main.cpp + + + + + test_env.cpp + 8 + env\test_env.cpp + + + + + + + + + + +
diff --git a/workspace_tools/targets.py b/workspace_tools/targets.py index 45d8464031..a6b7f13619 100755 --- a/workspace_tools/targets.py +++ b/workspace_tools/targets.py @@ -127,7 +127,7 @@ class LPC11C24(LPCTarget): self.progen = { "target":"lpc11c24_301", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -141,7 +141,7 @@ class LPC1114(LPCTarget): self.progen = { "target":"lpc1114_102", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -156,7 +156,7 @@ class LPC11U24(LPCTarget): self.progen = { "target":"lpc11u24_201", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -171,7 +171,7 @@ class OC_MBUINO(LPC11U24): self.progen = { "target":"lpc11u24_201", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -208,7 +208,7 @@ class LPC11U35_401(LPCTarget): self.progen = { "target":"lpc11u35_401", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -222,7 +222,7 @@ class LPC11U35_501(LPCTarget): self.progen = { "target":"lpc11u35_501", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -236,7 +236,7 @@ class LPC11U35_501_IBDAP(LPCTarget): self.progen = { "target":"lpc11u35_501", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -250,7 +250,7 @@ class XADOW_M0(LPCTarget): self.progen = { "target":"lpc11u35_501", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -264,7 +264,7 @@ class LPC11U35_Y5_MBUG(LPCTarget): self.progen = { "target":"lpc11u35_501", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -278,7 +278,7 @@ class LPC11U37_501(LPCTarget): self.progen = { "target":"lpc11u37_501", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -297,7 +297,7 @@ class ARCH_GPRS(LPCTarget): self.progen = { "target":"lpc11u37_501", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -313,7 +313,7 @@ class LPC11U68(LPCTarget): self.progen = { "target":"lpc11u68", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -326,7 +326,7 @@ class LPC1347(LPCTarget): self.progen = { "target":"lpc1347", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -342,7 +342,7 @@ class LPC1549(LPCTarget): self.progen = { "target":"lpc1549", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -356,7 +356,7 @@ class LPC1768(LPCTarget): self.progen = { "target":"mbed-lpc1768", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -371,7 +371,7 @@ class ARCH_PRO(LPCTarget): self.progen = { "target":"arch-pro", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -386,7 +386,7 @@ class UBLOX_C027(LPCTarget): self.progen = { "target":"ublox-c027", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -401,7 +401,7 @@ class XBED_LPC1768(LPCTarget): self.progen = { "target":"lpc1768", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -414,7 +414,7 @@ class LPC2368(LPCTarget): self.progen = { "target":"lpc2368", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -427,7 +427,7 @@ class LPC2460(LPCTarget): self.progen = { "target":"lpc2460", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -442,7 +442,7 @@ class LPC810(LPCTarget): self.progen = { "target":"lpc810", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -459,7 +459,7 @@ class LPC812(LPCTarget): self.progen = { "target":"lpc812m101", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -475,7 +475,7 @@ class LPC824(LPCTarget): self.progen = { "target":"lpc824m201", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -490,7 +490,7 @@ class SSCI824(LPCTarget): self.progen = { "target":"ssci824", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -504,7 +504,7 @@ class LPC4088(LPCTarget): self.progen = { "target":"lpc4088", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -554,7 +554,7 @@ class LPC4330_M4(LPCTarget): self.progen = { "target":"lpc4330", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -574,7 +574,7 @@ class LPC4337(LPCTarget): self.progen = { "target":"lpc4337", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -596,7 +596,7 @@ class LPC11U37H_401(LPCTarget): self.progen = { "target":"lpc11u37_401", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } ### Freescale ### @@ -613,7 +613,7 @@ class KL05Z(Target): self.progen = { "target":"frdm-kl05z", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -629,7 +629,7 @@ class KL25Z(Target): self.progen = { "target":"frdm-kl25z", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -644,7 +644,7 @@ class KL26Z(Target): self.progen = { "target":"kl26z", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -659,7 +659,7 @@ class KL43Z(Target): self.progen = { "target":"frdm-kl43z", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -675,7 +675,7 @@ class KL46Z(Target): self.progen = { "target":"frdm-kl46z", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -690,7 +690,7 @@ class K20D50M(Target): self.progen = { "target":"frdm-k20d50m", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -707,7 +707,7 @@ class TEENSY3_1(Target): self.progen = { "target":"teensy-31", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -737,7 +737,7 @@ class K22F(Target): self.progen = { "target":"frdm-k22f", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -755,7 +755,7 @@ class K64F(Target): self.progen = { "target":"frdm-k64f", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -771,7 +771,7 @@ class MTS_GAMBIT(Target): self.progen = { "target":"mts-gambit", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -789,7 +789,7 @@ class NUCLEO_F030R8(Target): self.progen = { "target":"nucleo-f030r8", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -805,7 +805,7 @@ class NUCLEO_F031K6(Target): self.progen = { "target":"nucleo-f031k6", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -821,7 +821,7 @@ class NUCLEO_F042K6(Target): self.progen = { "target":"nucleo-f042k6", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -837,7 +837,7 @@ class NUCLEO_F070RB(Target): self.progen = { "target":"nucleo-f070rb", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -853,7 +853,7 @@ class NUCLEO_F072RB(Target): self.progen = { "target":"nucleo-f072rb", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -869,7 +869,7 @@ class NUCLEO_F091RC(Target): self.progen = { "target":"nucleo-f091rc", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -885,7 +885,7 @@ class NUCLEO_F103RB(Target): self.progen = { "target":"nucleo-f103rb", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -901,7 +901,7 @@ class NUCLEO_F302R8(Target): self.progen = { "target":"nucleo-f302r8", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -917,7 +917,7 @@ class NUCLEO_F303K8(Target): self.progen = { "target":"nucleo-f303k8", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -933,7 +933,7 @@ class NUCLEO_F303RE(Target): self.progen = { "target":"nucleo-f303re", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -949,7 +949,7 @@ class NUCLEO_F334R8(Target): self.progen = { "target":"nucleo-f334r8", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -965,7 +965,7 @@ class NUCLEO_F401RE(Target): self.progen = { "target":"nucleo-f401re", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -981,7 +981,7 @@ class NUCLEO_F410RB(Target): self.progen = { "target":"nucleo-f410rb", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -997,7 +997,7 @@ class NUCLEO_F411RE(Target): self.progen = { "target":"nucleo-f411re", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1023,7 +1023,7 @@ class NUCLEO_F446RE(Target): self.progen = { "target":"nucleo-f446re", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1047,8 +1047,8 @@ class NUCLEO_F746ZG(Target): self.progen = { "target":"nucleo-f746zg", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], - } + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], + }, "iar": { "template": [os.path.join(os.path.dirname(__file__), 'export', 'iar_nucleo_f746cg.ewp.tmpl')], } @@ -1066,7 +1066,7 @@ class NUCLEO_L053R8(Target): self.progen = { "target":"nucleo-l053r8", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1082,7 +1082,7 @@ class NUCLEO_L073RZ(Target): self.progen = { "target":"nucleo-l073rz", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1098,7 +1098,7 @@ class NUCLEO_L152RE(Target): self.progen = { "target":"nucleo-l152re", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1114,7 +1114,7 @@ class NUCLEO_L476RG(Target): self.progen = { "target":"nucleo-l476rg", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1144,7 +1144,7 @@ class ARCH_MAX(Target): self.progen = { "target":"lpc1768", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } def program_cycle_s(self): @@ -1185,7 +1185,7 @@ class DISCO_F334C8(Target): self.progen = { "target":"disco-f334c8", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1198,7 +1198,7 @@ class DISCO_F407VG(Target): self.progen = { "target":"disco-f407vg", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } self.default_toolchain = "ARM" @@ -1213,7 +1213,7 @@ class DISCO_F429ZI(Target): self.progen = { "target":"", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1229,7 +1229,7 @@ class DISCO_F469NI(Target): self.progen = { "target":"disco-f469ni", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1243,7 +1243,7 @@ class DISCO_L053C8(Target): self.progen = { "target":"disco-l053c8", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1257,7 +1257,7 @@ class DISCO_F746NG(Target): self.progen = { "target":"disco-f746ng", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1272,7 +1272,7 @@ class DISCO_L476VG(Target): self.progen = { "target":"disco-l476vg", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1288,7 +1288,7 @@ class MTS_MDOT_F405RG(Target): self.progen = { "target":"mts-mdot-f405rg", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1303,7 +1303,7 @@ class MTS_MDOT_F411RE(Target): self.progen = { "target":"mts-mdot-f411re", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1350,7 +1350,7 @@ class MTS_DRAGONFLY_F411RE(Target): self.progen = { "target":"mts-dragonfly-f411re", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1397,7 +1397,7 @@ class MOTE_L152RC(Target): self.progen = { "target":"stm32l151rc", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } class DISCO_F401VC(Target): @@ -1428,7 +1428,7 @@ class NZ32_SC151(Target): self.progen = { "target":"stm32l151rc", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } # After flashing device, how long to delay until we assume program is running @@ -1661,7 +1661,7 @@ class NRF51822(MCU_NRF51_16K): self.progen = { "target":"mkit", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } class NRF51822_BOOT(MCU_NRF51_16K_BOOT): @@ -1683,7 +1683,7 @@ class ARCH_BLE(MCU_NRF51_16K): self.progen = { "target":"arch-ble", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1728,7 +1728,7 @@ class SEEED_TINY_BLE(MCU_NRF51_16K): self.progen = { "target":"seed-tinyble", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1751,7 +1751,7 @@ class HRM1017(MCU_NRF51_16K): self.progen = { "target":"hrm1017", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } class HRM1017_BOOT(MCU_NRF51_16K_BOOT): @@ -1773,7 +1773,7 @@ class RBLAB_NRF51822(MCU_NRF51_16K): self.progen = { "target":"rblab-nrf51822", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1834,7 +1834,7 @@ class DELTA_DFCM_NNN40(MCU_NRF51_32K): self.progen = { "target":"dfcm-nnn40", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } def program_cycle_s(self): @@ -1863,7 +1863,7 @@ class NRF51_DK(MCU_NRF51_32K): self.progen = { "target":"nrf51-dk", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -1887,7 +1887,7 @@ class NRF51_DONGLE(MCU_NRF51_32K): self.progen = { "target":"nrf51-dongle", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2067,7 +2067,7 @@ class MAXWSNENV(Target): self.progen = { "target": "maxwsnenv", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2082,7 +2082,7 @@ class MAX32600MBED(Target): self.progen = { "target": "max32600mbed", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2099,7 +2099,7 @@ class EFM32GG_STK3700(Target): self.progen = { "target":"efm32gg_stk3700", #TODO: add to progen "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2116,7 +2116,7 @@ class EFM32LG_STK3600(Target): self.progen = { "target":"efm32lg_stk3600", #TODO: add to progen "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2133,7 +2133,7 @@ class EFM32WG_STK3800(Target): self.progen = { "target":"efm32wg_stk3800", #TODO: add to progen "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2150,7 +2150,7 @@ class EFM32ZG_STK3200(Target): self.progen = { "target":"efm32zg_stk3200", #TODO: add to progen "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -2166,7 +2166,7 @@ class EFM32HG_STK3400(Target): self.progen = { "target":"efm32hg_stk3400", #TODO: add to progen "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision_microlib.uvproj.tmpl')], } } @@ -2182,7 +2182,7 @@ class EFM32PG_STK3401(Target): self.progen = { "target":"efm32pg_stk3401", #TODO: add to progen "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2201,7 +2201,7 @@ class WIZWIKI_W7500(Target): self.progen = { "target":"wizwiki_w7500", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2216,7 +2216,7 @@ class WIZWIKI_W7500P(Target): self.progen = { "target":"wizwiki_w7500p", # TODO: add to progen "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2230,7 +2230,7 @@ class WIZWIKI_W7500ECO(Target): self.progen = { "target":"wizwiki_w7500eco", # TODO: add to progen "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2246,7 +2246,7 @@ class SAMR21G18A(Target): self.progen = { "target":"samr21g18a", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2261,7 +2261,7 @@ class SAMD21J18A(Target): self.progen = { "target":"samd21j18a", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2276,7 +2276,7 @@ class SAMD21G18A(Target): self.progen = { "target":"samd21g18a", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } @@ -2291,7 +2291,7 @@ class SAML21J18A(Target): self.progen = { "target":"samr21j18a", "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.tmpl')], + "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], } } From 3dcdd6e981b67eba569c117839320f1fbc916b70 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Thu, 10 Mar 2016 19:57:27 +0100 Subject: [PATCH 05/12] Exporters uvision - fix wording --- workspace_tools/export/uvision4.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/workspace_tools/export/uvision4.py b/workspace_tools/export/uvision4.py index b32b69e16f..09538a2866 100644 --- a/workspace_tools/export/uvision4.py +++ b/workspace_tools/export/uvision4.py @@ -20,9 +20,12 @@ from project_generator_definitions.definitions import ProGenDef from workspace_tools.export.exporters import Exporter from workspace_tools.targets import TARGET_MAP, TARGET_NAMES +# If you wish to add a new target, add it to project_generator_definitions, and then +# define progen_target name in the target class (`` self.progen_target = 'my_target_name' ``) +# There are 2 default mbed templates (predefined settings) uvision.uvproj and uvproj_microlib.uvproj.tmpl class Uvision4(Exporter): """ - Exporter class for IAR Systems. This class uses project generator. + Exporter class for uvision. This class uses project generator. """ # These 2 are currently for exporters backward compatiblity NAME = 'uVision4' @@ -46,10 +49,10 @@ class Uvision4(Exporter): """ Generates the project files """ project_data = self.progen_get_project_data() tool_specific = {} - # Expand tool specific settings by uivison specific settings which are required + # Expand tool specific settings by uvision specific settings which are required try: - if TARGET_MAP[self.target].progen['uivison']['template']: - tool_specific['uivison'] = TARGET_MAP[self.target].progen['uivison'] + if TARGET_MAP[self.target].progen['uvision']['template']: + tool_specific['uvision'] = TARGET_MAP[self.target].progen['uvision'] except KeyError: # use default template # by the mbed projects From aa0e8a5b4f8a5d148cd3c0862aa5f8b83906ba29 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Thu, 10 Mar 2016 20:26:23 +0100 Subject: [PATCH 06/12] Targets - remove uvision default template --- workspace_tools/targets.py | 222 ------------------------------------- 1 file changed, 222 deletions(-) diff --git a/workspace_tools/targets.py b/workspace_tools/targets.py index a6b7f13619..b9a62acf2c 100755 --- a/workspace_tools/targets.py +++ b/workspace_tools/targets.py @@ -126,9 +126,6 @@ class LPC11C24(LPCTarget): self.progen = { "target":"lpc11c24_301", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class LPC1114(LPCTarget): @@ -325,9 +322,6 @@ class LPC1347(LPCTarget): self.supported_toolchains = ["ARM", "GCC_ARM","IAR"] self.progen = { "target":"lpc1347", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class LPC1549(LPCTarget): @@ -355,9 +349,6 @@ class LPC1768(LPCTarget): self.detect_code = ["1010"] self.progen = { "target":"mbed-lpc1768", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class ARCH_PRO(LPCTarget): @@ -370,9 +361,6 @@ class ARCH_PRO(LPCTarget): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"arch-pro", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class UBLOX_C027(LPCTarget): @@ -385,9 +373,6 @@ class UBLOX_C027(LPCTarget): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"ublox-c027", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class XBED_LPC1768(LPCTarget): @@ -400,9 +385,6 @@ class XBED_LPC1768(LPCTarget): self.detect_code = ["1010"] self.progen = { "target":"lpc1768", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class LPC2368(LPCTarget): @@ -413,9 +395,6 @@ class LPC2368(LPCTarget): self.supported_toolchains = ["ARM", "GCC_ARM", "GCC_CR"] self.progen = { "target":"lpc2368", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class LPC2460(LPCTarget): @@ -426,9 +405,6 @@ class LPC2460(LPCTarget): self.supported_toolchains = ["GCC_ARM"] self.progen = { "target":"lpc2460", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class LPC810(LPCTarget): @@ -503,9 +479,6 @@ class LPC4088(LPCTarget): self.is_disk_virtual = True self.progen = { "target":"lpc4088", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } def init_hooks(self, hook, toolchain_name): @@ -553,9 +526,6 @@ class LPC4330_M4(LPCTarget): self.supported_toolchains = ["ARM", "GCC_CR", "IAR", "GCC_ARM"] self.progen = { "target":"lpc4330", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class LPC4330_M0(LPCTarget): @@ -573,9 +543,6 @@ class LPC4337(LPCTarget): self.supported_toolchains = ["ARM"] self.progen = { "target":"lpc4337", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class LPC1800(LPCTarget): @@ -628,9 +595,6 @@ class KL25Z(Target): self.detect_code = ["0200"] self.progen = { "target":"frdm-kl25z", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class KL26Z(Target): @@ -643,9 +607,6 @@ class KL26Z(Target): self.is_disk_virtual = True self.progen = { "target":"kl26z", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class KL43Z(Target): @@ -658,9 +619,6 @@ class KL43Z(Target): self.is_disk_virtual = True self.progen = { "target":"frdm-kl43z", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class KL46Z(Target): @@ -674,9 +632,6 @@ class KL46Z(Target): self.detect_code = ["0220"] self.progen = { "target":"frdm-kl46z", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class K20D50M(Target): @@ -689,9 +644,6 @@ class K20D50M(Target): self.detect_code = ["0230"] self.progen = { "target":"frdm-k20d50m", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class TEENSY3_1(Target): @@ -706,9 +658,6 @@ class TEENSY3_1(Target): self.detect_code = ["0230"] self.progen = { "target":"teensy-31", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } def init_hooks(self, hook, toolchain_name): @@ -736,9 +685,6 @@ class K22F(Target): self.detect_code = ["0201"] self.progen = { "target":"frdm-k22f", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class K64F(Target): @@ -754,9 +700,6 @@ class K64F(Target): self.detect_code = ["0240"] self.progen = { "target":"frdm-k64f", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class MTS_GAMBIT(Target): @@ -770,9 +713,6 @@ class MTS_GAMBIT(Target): self.default_toolchain = "ARM" self.progen = { "target":"mts-gambit", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } ### STMicro ### @@ -788,9 +728,6 @@ class NUCLEO_F030R8(Target): self.detect_code = ["0725"] self.progen = { "target":"nucleo-f030r8", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F031K6(Target): @@ -804,9 +741,6 @@ class NUCLEO_F031K6(Target): self.detect_code = ["0791"] self.progen = { "target":"nucleo-f031k6", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F042K6(Target): @@ -820,9 +754,6 @@ class NUCLEO_F042K6(Target): self.detect_code = ["0785"] self.progen = { "target":"nucleo-f042k6", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F070RB(Target): @@ -836,9 +767,6 @@ class NUCLEO_F070RB(Target): self.detect_code = ["0755"] self.progen = { "target":"nucleo-f070rb", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F072RB(Target): @@ -852,9 +780,6 @@ class NUCLEO_F072RB(Target): self.detect_code = ["0730"] self.progen = { "target":"nucleo-f072rb", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F091RC(Target): @@ -868,9 +793,6 @@ class NUCLEO_F091RC(Target): self.detect_code = ["0750"] self.progen = { "target":"nucleo-f091rc", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F103RB(Target): @@ -884,9 +806,6 @@ class NUCLEO_F103RB(Target): self.detect_code = ["0700"] self.progen = { "target":"nucleo-f103rb", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F302R8(Target): @@ -900,9 +819,6 @@ class NUCLEO_F302R8(Target): self.detect_code = ["0705"] self.progen = { "target":"nucleo-f302r8", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F303K8(Target): @@ -916,9 +832,6 @@ class NUCLEO_F303K8(Target): self.detect_code = ["0775"] self.progen = { "target":"nucleo-f303k8", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F303RE(Target): @@ -932,9 +845,6 @@ class NUCLEO_F303RE(Target): self.detect_code = ["0745"] self.progen = { "target":"nucleo-f303re", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F334R8(Target): @@ -948,9 +858,6 @@ class NUCLEO_F334R8(Target): self.detect_code = ["0735"] self.progen = { "target":"nucleo-f334r8", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F401RE(Target): @@ -964,9 +871,6 @@ class NUCLEO_F401RE(Target): self.detect_code = ["0720"] self.progen = { "target":"nucleo-f401re", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F410RB(Target): @@ -980,9 +884,6 @@ class NUCLEO_F410RB(Target): self.detect_code = ["0740"] self.progen = { "target":"nucleo-f410rb", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_F411RE(Target): @@ -996,9 +897,6 @@ class NUCLEO_F411RE(Target): self.detect_code = ["0740"] self.progen = { "target":"nucleo-f411re", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class ELMO_F411RE(Target): @@ -1022,9 +920,6 @@ class NUCLEO_F446RE(Target): self.detect_code = ["0777"] self.progen = { "target":"nucleo-f446re", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class B96B_F446VE(Target): @@ -1046,9 +941,6 @@ class NUCLEO_F746ZG(Target): self.detect_code = ["0816"] self.progen = { "target":"nucleo-f746zg", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - }, "iar": { "template": [os.path.join(os.path.dirname(__file__), 'export', 'iar_nucleo_f746cg.ewp.tmpl')], } @@ -1065,9 +957,6 @@ class NUCLEO_L053R8(Target): self.detect_code = ["0715"] self.progen = { "target":"nucleo-l053r8", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_L073RZ(Target): @@ -1081,9 +970,6 @@ class NUCLEO_L073RZ(Target): self.detect_code = ["0760"] self.progen = { "target":"nucleo-l073rz", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_L152RE(Target): @@ -1097,9 +983,6 @@ class NUCLEO_L152RE(Target): self.detect_code = ["0710"] self.progen = { "target":"nucleo-l152re", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NUCLEO_L476RG(Target): @@ -1113,9 +996,6 @@ class NUCLEO_L476RG(Target): self.detect_code = ["0765"] self.progen = { "target":"nucleo-l476rg", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class STM32F3XX(Target): @@ -1143,9 +1023,6 @@ class ARCH_MAX(Target): self.macros = ['LSI_VALUE=32000'] self.progen = { "target":"lpc1768", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } def program_cycle_s(self): return 2 @@ -1184,9 +1061,6 @@ class DISCO_F334C8(Target): self.detect_code = ["0810"] self.progen = { "target":"disco-f334c8", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class DISCO_F407VG(Target): @@ -1197,9 +1071,6 @@ class DISCO_F407VG(Target): self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"] self.progen = { "target":"disco-f407vg", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } self.default_toolchain = "ARM" @@ -1212,9 +1083,6 @@ class DISCO_F429ZI(Target): self.default_toolchain = "uARM" self.progen = { "target":"", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class DISCO_F469NI(Target): @@ -1228,9 +1096,6 @@ class DISCO_F469NI(Target): self.detect_code = ["0788"] self.progen = { "target":"disco-f469ni", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class DISCO_L053C8(Target): @@ -1242,9 +1107,6 @@ class DISCO_L053C8(Target): self.default_toolchain = "uARM" self.progen = { "target":"disco-l053c8", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class DISCO_F746NG(Target): @@ -1256,9 +1118,6 @@ class DISCO_F746NG(Target): self.detect_code = ["0815"] self.progen = { "target":"disco-f746ng", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class DISCO_L476VG(Target): @@ -1271,9 +1130,6 @@ class DISCO_L476VG(Target): self.detect_code = ["0820"] self.progen = { "target":"disco-l476vg", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class MTS_MDOT_F405RG(Target): @@ -1287,9 +1143,6 @@ class MTS_MDOT_F405RG(Target): self.default_toolchain = "ARM" self.progen = { "target":"mts-mdot-f405rg", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class MTS_MDOT_F411RE(Target): @@ -1302,9 +1155,6 @@ class MTS_MDOT_F411RE(Target): self.default_toolchain = "ARM" self.progen = { "target":"mts-mdot-f411re", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } def init_hooks(self, hook, toolchain_name): @@ -1349,9 +1199,6 @@ class MTS_DRAGONFLY_F411RE(Target): self.default_toolchain = "ARM" self.progen = { "target":"mts-dragonfly-f411re", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } def init_hooks(self, hook, toolchain_name): @@ -1396,9 +1243,6 @@ class MOTE_L152RC(Target): self.detect_code = ["4100"] self.progen = { "target":"stm32l151rc", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class DISCO_F401VC(Target): def __init__(self): @@ -1427,9 +1271,6 @@ class NZ32_SC151(Target): self.default_toolchain = "uARM" self.progen = { "target":"stm32l151rc", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } # After flashing device, how long to delay until we assume program is running def program_cycle_s(self): @@ -1660,9 +1501,6 @@ class NRF51822(MCU_NRF51_16K): self.macros += ['TARGET_NRF51822_MKIT'] self.progen = { "target":"mkit", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NRF51822_BOOT(MCU_NRF51_16K_BOOT): def __init__(self): @@ -1682,9 +1520,6 @@ class ARCH_BLE(MCU_NRF51_16K): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"arch-ble", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class ARCH_BLE_BOOT(MCU_NRF51_16K_BOOT): @@ -1727,9 +1562,6 @@ class SEEED_TINY_BLE(MCU_NRF51_16K): MCU_NRF51_16K.__init__(self) self.progen = { "target":"seed-tinyble", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class SEEED_TINY_BLE_BOOT(MCU_NRF51_16K_BOOT): @@ -1750,9 +1582,6 @@ class HRM1017(MCU_NRF51_16K): self.macros += ['TARGET_NRF_LFCLK_RC'] self.progen = { "target":"hrm1017", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class HRM1017_BOOT(MCU_NRF51_16K_BOOT): def __init__(self): @@ -1772,9 +1601,6 @@ class RBLAB_NRF51822(MCU_NRF51_16K): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"rblab-nrf51822", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class RBLAB_NRF51822_BOOT(MCU_NRF51_16K_BOOT): @@ -1833,9 +1659,6 @@ class DELTA_DFCM_NNN40(MCU_NRF51_32K): self.macros += ['TARGET_NRF_LFCLK_RC'] self.progen = { "target":"dfcm-nnn40", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } def program_cycle_s(self): return 10 @@ -1862,9 +1685,6 @@ class NRF51_DK(MCU_NRF51_32K): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"nrf51-dk", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NRF51_DK_BOOT(MCU_NRF51_32K_BOOT): @@ -1886,9 +1706,6 @@ class NRF51_DONGLE(MCU_NRF51_32K): MCU_NRF51_32K.__init__(self) self.progen = { "target":"nrf51-dongle", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class NRF51_DONGLE_BOOT(MCU_NRF51_32K_BOOT): @@ -2066,9 +1883,6 @@ class MAXWSNENV(Target): self.default_toolchain = "ARM" self.progen = { "target": "maxwsnenv", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class MAX32600MBED(Target): @@ -2081,9 +1895,6 @@ class MAX32600MBED(Target): self.default_toolchain = "ARM" self.progen = { "target": "max32600mbed", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } ### Silicon Labs ### @@ -2098,9 +1909,6 @@ class EFM32GG_STK3700(Target): self.default_toolchain = "ARM" self.progen = { "target":"efm32gg_stk3700", #TODO: add to progen - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } @@ -2115,9 +1923,6 @@ class EFM32LG_STK3600(Target): self.default_toolchain = "ARM" self.progen = { "target":"efm32lg_stk3600", #TODO: add to progen - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } @@ -2132,9 +1937,6 @@ class EFM32WG_STK3800(Target): self.default_toolchain = "ARM" self.progen = { "target":"efm32wg_stk3800", #TODO: add to progen - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } @@ -2181,9 +1983,6 @@ class EFM32PG_STK3401(Target): self.default_toolchain = "ARM" self.progen = { "target":"efm32pg_stk3401", #TODO: add to progen - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } @@ -2200,9 +1999,6 @@ class WIZWIKI_W7500(Target): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"wizwiki_w7500", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class WIZWIKI_W7500P(Target): @@ -2215,9 +2011,6 @@ class WIZWIKI_W7500P(Target): self.supported_form_factors = ["ARDUINO"] self.progen = { "target":"wizwiki_w7500p", # TODO: add to progen - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class WIZWIKI_W7500ECO(Target): @@ -2229,9 +2022,6 @@ class WIZWIKI_W7500ECO(Target): self.default_toolchain = "ARM" self.progen = { "target":"wizwiki_w7500eco", # TODO: add to progen - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } @@ -2245,9 +2035,6 @@ class SAMR21G18A(Target): self.default_toolchain = "ARM" self.progen = { "target":"samr21g18a", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class SAMD21J18A(Target): @@ -2260,9 +2047,6 @@ class SAMD21J18A(Target): self.default_toolchain = "ARM" self.progen = { "target":"samd21j18a", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class SAMD21G18A(Target): @@ -2275,9 +2059,6 @@ class SAMD21G18A(Target): self.default_toolchain = "ARM" self.progen = { "target":"samd21g18a", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } class SAML21J18A(Target): @@ -2290,9 +2071,6 @@ class SAML21J18A(Target): self.default_toolchain = "ARM" self.progen = { "target":"samr21j18a", - "uvision": { - "template": [os.path.join(os.path.dirname(__file__), 'export', 'uvision.uvproj.tmpl')], - } } # Get a single instance for each target From d7961208a5b9867962b465c274eff3b6dad3e0a4 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Fri, 11 Mar 2016 08:21:04 +0100 Subject: [PATCH 07/12] Exporters uvision template - remove objects --- workspace_tools/export/uvision.uvproj.tmpl | 36 ++----------------- .../export/uvision_microlib.uvproj.tmpl | 10 ++---- 2 files changed, 4 insertions(+), 42 deletions(-) diff --git a/workspace_tools/export/uvision.uvproj.tmpl b/workspace_tools/export/uvision.uvproj.tmpl index 9747de758f..479fd31722 100644 --- a/workspace_tools/export/uvision.uvproj.tmpl +++ b/workspace_tools/export/uvision.uvproj.tmpl @@ -347,9 +347,9 @@ 0 --gnu --no_rtti - TARGET_FF_ARDUINO, TARGET_KLXX, TARGET_KL25Z, TARGET_CORTEX_M, TARGET_LIKE_MBED, TARGET_M0P, TARGET_Freescale, TOOLCHAIN_ARM_STD, __MBED__=1, MBED_BUILD_TIMESTAMP=1457625532.98, __CORTEX_M0PLUS, TOOLCHAIN_ARM, TARGET_LIKE_CORTEX_M0, ARM_MATH_CM0PLUS, __ASSERT_MSG, + - .; env; mbed; mbed\TARGET_KL25Z; mbed\TARGET_KL25Z\TARGET_Freescale; mbed\TARGET_KL25Z\TARGET_Freescale\TARGET_KLXX; mbed\TARGET_KL25Z\TARGET_Freescale\TARGET_KLXX\TARGET_KL25Z; mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD; + @@ -381,23 +381,6 @@ - - mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\board.o - - mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\cmsis_nvic.o - - mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\mbed_overrides.o - - mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\retarget.o - - mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\startup_MKL25Z4.o - - mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\sys.o - - mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\system_MKL25Z4.o - - mbed\TARGET_KL25Z\TOOLCHAIN_ARM_STD\mbed.ar - @@ -409,21 +392,6 @@ src - - - main.cpp - 8 - main.cpp - - - - - test_env.cpp - 8 - env\test_env.cpp - - - diff --git a/workspace_tools/export/uvision_microlib.uvproj.tmpl b/workspace_tools/export/uvision_microlib.uvproj.tmpl index bdd647f7a8..9d70cd9100 100644 --- a/workspace_tools/export/uvision_microlib.uvproj.tmpl +++ b/workspace_tools/export/uvision_microlib.uvproj.tmpl @@ -347,7 +347,7 @@ 0 --gnu --no_rtti - TARGET_FF_ARDUINO, TARGET_KLXX, TARGET_KL05Z, TARGET_LIKE_MBED, TARGET_CORTEX_M, TOOLCHAIN_ARM_MICRO, TARGET_M0P, TARGET_Freescale, __MBED__=1, MBED_BUILD_TIMESTAMP=1457625545.47, __CORTEX_M0PLUS, TOOLCHAIN_ARM, TARGET_LIKE_CORTEX_M0, ARM_MATH_CM0PLUS, __ASSERT_MSG, + .; env; mbed; @@ -401,13 +401,7 @@ - - test_env.cpp - 8 - env\test_env.cpp - - - + From 0fa5e462e6a356c9eb5fce38fd040bbb476a64e6 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Fri, 11 Mar 2016 08:27:39 +0100 Subject: [PATCH 08/12] Exporters uvision - fix template name --- workspace_tools/export/uvision4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace_tools/export/uvision4.py b/workspace_tools/export/uvision4.py index 09538a2866..c76b100c00 100644 --- a/workspace_tools/export/uvision4.py +++ b/workspace_tools/export/uvision4.py @@ -57,7 +57,7 @@ class Uvision4(Exporter): # use default template # by the mbed projects tool_specific['uvision'] = { - 'template': [join(dirname(__file__), 'uvision.tmpl')], + 'template': [join(dirname(__file__), 'uvision.uvproj.tmpl')], } project_data['tool_specific'] = {} From 7e650da9d75f425431e649985c652eb44877602e Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Sat, 12 Mar 2016 07:55:08 +0100 Subject: [PATCH 09/12] Exporters uvision - template --bin fix --- workspace_tools/export/uvision.uvproj.tmpl | 2 +- workspace_tools/export/uvision_microlib.uvproj.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace_tools/export/uvision.uvproj.tmpl b/workspace_tools/export/uvision.uvproj.tmpl index 479fd31722..2c24a02441 100644 --- a/workspace_tools/export/uvision.uvproj.tmpl +++ b/workspace_tools/export/uvision.uvproj.tmpl @@ -75,7 +75,7 @@ 1 0 - fromelf --bin -o build\MBED_11_KL25Z.bin build\MBED_11.axf + fromelf --bin --output=@L.bin !L 0 0 diff --git a/workspace_tools/export/uvision_microlib.uvproj.tmpl b/workspace_tools/export/uvision_microlib.uvproj.tmpl index 9d70cd9100..775d38b51e 100644 --- a/workspace_tools/export/uvision_microlib.uvproj.tmpl +++ b/workspace_tools/export/uvision_microlib.uvproj.tmpl @@ -75,7 +75,7 @@ 1 0 - fromelf --bin -o build\MBED_11_KL05Z.bin build\MBED_11.axf + fromelf --bin --output=@L.bin !L 0 0 From cfda78d2caff4d1407754cb7e6ce0af51b5a5d7d Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Sun, 13 Mar 2016 09:54:31 +0100 Subject: [PATCH 10/12] Exporters uvision - fix timestamp - asm does not like decimal point The mbed time build stamp is with decimal point, which is causing ASM to fail, with strange command error. As a workaround, we truncate the number when exporting to uvision. --- workspace_tools/export/uvision4.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/workspace_tools/export/uvision4.py b/workspace_tools/export/uvision4.py index c76b100c00..b3001dda59 100644 --- a/workspace_tools/export/uvision4.py +++ b/workspace_tools/export/uvision4.py @@ -62,6 +62,14 @@ class Uvision4(Exporter): project_data['tool_specific'] = {} project_data['tool_specific'].update(tool_specific) + # armasm does not like floating numbers in macros, timestamp to int + i = 0 + for macro in project_data['common']['macros']: + if macro.startswith('MBED_BUILD_TIMESTAMP'): + timestamp = macro[len('MBED_BUILD_TIMESTAMP='):] + project_data['common']['macros'][i] = 'MBED_BUILD_TIMESTAMP=' + str(int(float(timestamp))) + break + i += 1 project_data['common']['macros'].append('__ASSERT_MSG') self.progen_gen_file('uvision', project_data) From 0651e2c29e19d9534916f2b9ebdf6534b8d895d5 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Sun, 13 Mar 2016 09:56:41 +0100 Subject: [PATCH 11/12] Exporters uvision - templates - enable c99 mode --- workspace_tools/export/uvision.uvproj.tmpl | 3 ++- workspace_tools/export/uvision_microlib.uvproj.tmpl | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/workspace_tools/export/uvision.uvproj.tmpl b/workspace_tools/export/uvision.uvproj.tmpl index 2c24a02441..ab8827b96d 100644 --- a/workspace_tools/export/uvision.uvproj.tmpl +++ b/workspace_tools/export/uvision.uvproj.tmpl @@ -345,8 +345,9 @@ 0 0 0 + 1 - --gnu --no_rtti + --gnu --no_rtti diff --git a/workspace_tools/export/uvision_microlib.uvproj.tmpl b/workspace_tools/export/uvision_microlib.uvproj.tmpl index 775d38b51e..fd0d5521bf 100644 --- a/workspace_tools/export/uvision_microlib.uvproj.tmpl +++ b/workspace_tools/export/uvision_microlib.uvproj.tmpl @@ -345,8 +345,9 @@ 0 0 0 + 1 - --gnu --no_rtti + --gnu --no_rtti .; env; mbed; From 439c7798ab261f3436afa4db61aebf3169a4aa99 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Mon, 14 Mar 2016 22:12:58 +0000 Subject: [PATCH 12/12] Update dep on progen to at least 0.8.11 0.8.11 fixes uvision assembly (.S) files generation --- requirements.txt | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5ea6adf5a5..ec018213c3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,6 +4,6 @@ prettytable Jinja2 IntelHex mbed-ls -project-generator>=0.8.8,<0.9.0 +project-generator>=0.8.11,<0.9.0 junit-xml -requests \ No newline at end of file +requests diff --git a/setup.py b/setup.py index d3fe1cb02c..bb6e3e34b6 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup(name='mbed-tools', url='https://github.com/mbedmicro/mbed', packages=find_packages(), license=LICENSE, - install_requires=["PrettyTable>=0.7.2", "PySerial>=2.7", "IntelHex>=1.3", "colorama>=0.3.3", "Jinja2>=2.7.3", "project-generator>=0.8.8,<0.9.0", "junit-xml", "requests"]) + install_requires=["PrettyTable>=0.7.2", "PySerial>=2.7", "IntelHex>=1.3", "colorama>=0.3.3", "Jinja2>=2.7.3", "project-generator>=0.8.11,<0.9.0", "junit-xml", "requests"]) # Restore previous private_settings if needed if backup: