Skip to content

Commit b4d3b74

Browse files
Merge branch 'master' into master
2 parents 83d5c84 + 577bd29 commit b4d3b74

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/mbed-greentea/mbed_greentea/mbed_greentea_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ def dump_report_to_text_file(filename, content):
983983
"""
984984
try:
985985
with io.open(filename, encoding="utf-8", errors="backslashreplace", mode="w") as f:
986-
f.write(content)
986+
f.write(content.decode('utf-8'))
987987
except IOError as e:
988988
gt_logger.gt_log_err("can't export to '%s', reason:"% filename)
989989
gt_logger.gt_log_err(str(e))

src/mbed_os_tools/detect/platform_database.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229
u"1307": u"NUMAKER_PFM_NUC240",
230230
u"1308": u"NUMAKER_IOT_M487",
231231
u"1309": u"NUMAKER_M252KG",
232-
u"1310": u"NUMAKER_M263KI",
232+
u"1310": u"NUMAKER_IOT_M263A",
233233
u"1500": u"RHOMBIO_L476DMW1K",
234234
u"1549": u"LPC1549",
235235
u"1600": u"LPC4330_M4",
@@ -244,6 +244,7 @@
244244
u'1904': u'CY8CPROTO_063_BLE',
245245
u'1905': u'CY8CKIT_062_4343W',
246246
u'1906': u'CYW943012P6EVB_01',
247+
u'1907': u'CY8CPROTO_064_SB',
247248
u'1909': u'CY8CPROTO_062S2_43012',
248249
u"2000": u"EFM32_G8XX_STK",
249250
u"2005": u"EFM32HG_STK3400",

0 commit comments

Comments
 (0)