Skip to content

Commit f5e55ed

Browse files
committed
Fix build script
1 parent 608cc59 commit f5e55ed

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

mbed-os-to-arduino

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash -ex
22

33
MBED_CORE_LOCATION=$1
4-
BOARDNAMES=(MTB_MURATA_ABZ)
4+
BOARDNAMES=(ENVIE_M7 ENVIE_M4)
55

66
#always work in /tmp
77
cd /tmp/
@@ -36,13 +36,13 @@ echo -e "{
3636
\"macros\": [
3737
\"MBED_HEAP_STATS_ENABLED=1\",
3838
\"MBED_STACK_STATS_ENABLED=1\",
39-
\"MBED_MEM_TRACING_ENABLED=1\",
39+
\"MBED_MEM_TRACING_ENABLED=1\"
4040
],
4141
\"target_overrides\": {
4242
\"*\": {
4343
\"platform.stdio-buffered-serial\": true,
4444
\"platform.stdio-baud-rate\": 115200,
45-
\"platform.default-serial-baud-rate\": 115200,
45+
\"platform.default-serial-baud-rate\": 115200
4646
}
4747
}
4848
}" > mbed_app.json
@@ -71,9 +71,9 @@ if [ -d $ARDUINOCORE/conf ]; then
7171
cp -r $ARDUINOCORE/conf/* .
7272
fi
7373

74-
set +e
75-
mbed update
76-
set -e
74+
#set +e
75+
#mbed update
76+
#set -e
7777

7878
rm -rf BUILD
7979

0 commit comments

Comments
 (0)