Skip to content

Commit 6b2cd33

Browse files
committed
PR #1171 - Squashed commit of the following:
commit 5b65ac9848f232b37ccf57b3cea3c8abd8788eb8 Merge: 4778e33 167456e Author: 0xc0170 <[email protected]> Date: Wed Jun 10 13:18:07 2015 +0100 Merge branch 'master' of https://github.com/toyowata/mbed into toyowata-master commit 167456e Author: Toyomasa Watarai <[email protected]> Date: Wed Jun 10 11:22:47 2015 +0900 Change target name not use low cases Rev.101 mbed library support WIZnet platfrom. However, we got build error as below by online compiler: Target “WIZWIKI_W7500” is not recognized This is because target name contained low cases (e.g. WIZwiki_W7500). The target name should be all upper case. commit b988a53 Merge: f74cbe0 a140fc6 Author: Toyomasa Watarai <[email protected]> Date: Wed Jun 10 11:10:37 2015 +0900 Merge remote-tracking branch 'upstream/master' commit f74cbe0 Author: Toyomasa Watarai <[email protected]> Date: Wed Jun 10 11:07:02 2015 +0900 Revert RTC test script change As a result of discussion here: #1154 commit a4923ff Author: Toyomasa Watarai <[email protected]> Date: Thu Jun 4 00:17:06 2015 +0900 [TEST] Add MCU list in RTC automated test * Add "mcu" key with lists of RTC support targets (#define DEVICE_RTC 1 in device.h), now MBED_16 test is not executed by non-RTC targets
1 parent 4778e33 commit 6b2cd33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

workspace_tools/build_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
('MAXWSNENV', ('ARM', 'GCC_ARM', 'IAR')),
106106
('MAX32600MBED', ('ARM', 'GCC_ARM', 'IAR')),
107107

108-
('WIZwiki_W7500', ('ARM', 'uARM')),
108+
('WIZWIKI_W7500', ('ARM', 'uARM')),
109109
)
110110

111111

workspace_tools/targets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def init_hooks(self, hook, toolchain_name):
7171
pass
7272
##WIZnet
7373

74-
class WIZwiki_W7500(Target):
74+
class WIZWIKI_W7500(Target):
7575
def __init__(self):
7676
Target.__init__(self)
7777
self.core = "Cortex-M0"
@@ -1254,7 +1254,7 @@ def __init__(self):
12541254
TARGETS = [
12551255

12561256
### WIZnet ###
1257-
WIZwiki_W7500(),
1257+
WIZWIKI_W7500(),
12581258

12591259
### NXP ###
12601260
LPC11C24(),

0 commit comments

Comments
 (0)