Skip to content

Commit cf645e8

Browse files
committed
[K20D50M] K20D50M - correct target name
1 parent 79ee368 commit cf645e8

37 files changed

+5
-4
lines changed

workspace_tools/build_release.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
('KL25Z', ('ARM', 'GCC_ARM')),
4646
('KL46Z', ('ARM', 'GCC_ARM')),
4747
('K64F', ('ARM', 'GCC_ARM')),
48+
('K20D50M', ('ARM', 'GCC_ARM')),
4849

4950
('NUCLEO_F030R8', ('ARM', 'uARM')),
5051
('NUCLEO_F072RB', ('ARM', 'uARM')),

workspace_tools/export/gccarm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class GccArm(Exporter):
2828
'KL25Z',
2929
'KL46Z',
3030
'K64F',
31-
'K20D5M',
31+
'K20D50M',
3232
'LPC4088',
3333
'LPC11U24',
3434
'LPC1114',

workspace_tools/export/uvision4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Uvision4(Exporter):
2828
'KL25Z',
2929
'KL46Z',
3030
'K64F',
31-
'K20D5M',
31+
'K20D50M',
3232
'LPC1347',
3333
'LPC1114',
3434
'LPC11C24',

workspace_tools/targets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def __init__(self):
124124
self.is_disk_virtual = True
125125

126126

127-
class K20D5M(Target):
127+
class K20D50M(Target):
128128
def __init__(self):
129129
Target.__init__(self)
130130
self.core = "Cortex-M4"
@@ -550,7 +550,7 @@ def __init__(self):
550550
KL05Z(),
551551
KL25Z(),
552552
KL46Z(),
553-
K20D5M(),
553+
K20D50M(),
554554
K64F(),
555555
LPC812(),
556556
LPC810(),

0 commit comments

Comments
 (0)