Brian Daniels / mbed-tools

Fork of mbed-tools by Morpheus

Revision:
11:072037a91709
Parent:
2:5f044fef8f98
--- a/targets.py	Mon Apr 04 15:41:15 2016 +0100
+++ b/targets.py	Tue Apr 05 00:21:13 2016 +0100
@@ -702,6 +702,13 @@
             "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 @@
     TEENSY3_1(),
     K22F(),
     K64F(),
+    K64F_UV(),
     MTS_GAMBIT(),       # FRDM K64F
 
     ### STMicro ###