mirror of https://github.com/ARMmbed/mbed-os.git
Define K64F_UV
parent
e74b59cc94
commit
b0fa89205c
|
@ -702,6 +702,13 @@ class K64F(Target):
|
||||||
"target":"frdm-k64f",
|
"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):
|
class MTS_GAMBIT(Target):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
Target.__init__(self)
|
Target.__init__(self)
|
||||||
|
@ -2122,6 +2129,7 @@ TARGETS = [
|
||||||
TEENSY3_1(),
|
TEENSY3_1(),
|
||||||
K22F(),
|
K22F(),
|
||||||
K64F(),
|
K64F(),
|
||||||
|
K64F_UV(),
|
||||||
MTS_GAMBIT(), # FRDM K64F
|
MTS_GAMBIT(), # FRDM K64F
|
||||||
|
|
||||||
### STMicro ###
|
### STMicro ###
|
||||||
|
|
Loading…
Reference in New Issue