Skip to content

Commit 4dbfe1e

Browse files
committed
Merge pull request #445 from Experiment-626/master
Renamed TARGET_GHI_MBUINO to TARGET_OC_MBUINO to match the new name of t...
2 parents 3521bd3 + bf254ca commit 4dbfe1e

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

workspace_tools/build_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
('RBLAB_NRF51822', ('ARM', 'GCC_ARM')),
6565

6666
('LPC11U68', ('uARM','GCC_ARM','GCC_CR')),
67-
('GHI_MBUINO', ('ARM', 'uARM', 'GCC_ARM')),
67+
('OC_MBUINO', ('ARM', 'uARM', 'GCC_ARM')),
6868
)
6969

7070

workspace_tools/build_travis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{ "target": "LPC1768", "toolchains": "GCC_ARM", "libs": ["dsp", "rtos", "eth", "usb_host", "usb", "ublox", "fat"] },
3131
{ "target": "LPC2368", "toolchains": "GCC_ARM", "libs": ["fat"] },
3232
{ "target": "LPC11U24", "toolchains": "GCC_ARM", "libs": ["dsp", "rtos", "fat"] },
33-
{ "target": "GHI_MBUINO", "toolchains": "GCC_ARM", "libs": ["fat"] },
33+
{ "target": "OC_MBUINO", "toolchains": "GCC_ARM", "libs": ["fat"] },
3434

3535
{ "target": "LPC11U24_301", "toolchains": "GCC_ARM", "libs": ["fat"] },
3636
{ "target": "NUCLEO_F103RB", "toolchains": "GCC_ARM", "libs": ["fat"] },

workspace_tools/targets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def __init__(self):
590590
self.macros = ['TARGET_NRF51822']
591591

592592

593-
class GHI_MBUINO(LPC11U24):
593+
class OC_MBUINO(LPC11U24):
594594
def __init__(self):
595595
LPC11U24.__init__(self)
596596
self.core = "Cortex-M0"
@@ -656,7 +656,7 @@ def __init__(self):
656656
HRM1017(),
657657
ARM_MPS2(),
658658
RBLAB_NRF51822(),
659-
GHI_MBUINO(),
659+
OC_MBUINO(),
660660
MTS_GAMBIT(),
661661
]
662662

0 commit comments

Comments
 (0)