From b0fa89205c030d6706f22dbf2f90691df0c0df5a Mon Sep 17 00:00:00 2001 From: Marcus Shawcroft Date: Tue, 5 Apr 2016 16:38:58 +0100 Subject: [PATCH] Define K64F_UV --- tools/targets.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/targets.py b/tools/targets.py index 79723a6d40..ae0680a265 100755 --- a/tools/targets.py +++ b/tools/targets.py @@ -702,6 +702,13 @@ class K64F(Target): "target":"frdm-k64f", } +class K64F_UV(K64F): + def __init__(self): + K64F.__init__(self) + self.core = "Cortex-M4" + self.extra_labels += ['K64F'] + self.macros += ['TARGET_K64F'] + class MTS_GAMBIT(Target): def __init__(self): Target.__init__(self) @@ -2122,6 +2129,7 @@ TARGETS = [ TEENSY3_1(), K22F(), K64F(), + K64F_UV(), MTS_GAMBIT(), # FRDM K64F ### STMicro ###