Updated ref
Dependencies: FXOS8700Q-driver MODSERIAL
Fork of AAT_LWM2M_K64F by
Diff: build_all.sh
- Revision:
- 45:b150e0aa009c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build_all.sh Tue Dec 13 13:45:11 2016 +0000 @@ -0,0 +1,40 @@ +#!/bin/bash +# +set -e +TOOL=GCC_ARM + +echo Compiling with $TOOL +cp configs/eth_v4.json ./mbed_app.json +cp configs/eth-wifi-mbedignore ./.mbedignore +mbed compile -m K64F -t $TOOL +cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-eth-v4.bin +mbed compile -m NUCLEO_F439ZI -t $TOOL +cp ./BUILD/NUCLEO_F439ZI/GCC_ARM/mbed-os-example-client.bin f439zi-$TOOL-eth-v4.bin + +cp configs/eth_v6.json ./mbed_app.json +cp configs/eth-wifi-mbedignore ./.mbedignore +mbed compile -m K64F -t $TOOL +cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-eth-v6.bin +mbed compile -m NUCLEO_F439ZI -t $TOOL +cp ./BUILD/NUCLEO_F439ZI/GCC_ARM/mbed-os-example-client.bin f439zi-$TOOL-eth-v4.bin + +cp configs/wifi_v4.json ./mbed_app.json +cp configs/eth-wifi-mbedignore ./.mbedignore +mbed compile -m K64F -t $TOOL +cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-wifi-v4.bin +mbed compile -m UBLOX_EVK_ODIN_W2 -t $TOOL +cp ./BUILD/UBLOX_EVK_ODIN_W2/GCC_ARM/mbed-os-example-client.bin ublox-odin-$TOOL-wifi-v4.bin + +cp configs/mesh_6lowpan.json ./mbed_app.json +cp configs/mesh-mbedignore ./.mbedignore +mbed compile -m K64F -t $TOOL +cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-6lowpan.bin +mbed compile -m NUCLEO_F439ZI -t $TOOL +cp ./BUILD/NUCLEO_F439ZI/GCC_ARM/mbed-os-example-client.bin f439zi-$TOOL-6lowpan.bin + +cp configs/mesh_thread.json ./mbed_app.json +cp configs/mesh-mbedignore ./.mbedignore +mbed compile -m K64F -t $TOOL +cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-Thread.bin +mbed compile -m NUCLEO_F439ZI -t $TOOL +cp ./BUILD/NUCLEO_F439ZI/GCC_ARM/mbed-os-example-client.bin f439zi-$TOOL-Thread.bin \ No newline at end of file