Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
build_all.sh@62:077cbce2bd10, 2017-02-02 (annotated)
- Committer:
- mbed_official
- Date:
- Thu Feb 02 08:30:11 2017 +0000
- Revision:
- 62:077cbce2bd10
- Parent:
- 45:b150e0aa009c
- Child:
- 63:c73f78fd7982
UBLOX_EVK_ODIN_W2 ethernet support
You can get the ethernet working on the UBLOX, if you modify the
mbed_app.json - eth configs changed to match the need (you need
to drop the "EMAC" in case of UBLOX).
cp configs/eth_v4.json mbed_app.json
cp configs/eth-wifi-mbedignore .mbedignore
mbed compile -m UBLOX_EVK_ODIN_W2
yields a working ethernet binary for UBLOX.
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-client
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mbed_official | 45:b150e0aa009c | 1 | #!/bin/bash |
| mbed_official | 45:b150e0aa009c | 2 | # |
| mbed_official | 45:b150e0aa009c | 3 | set -e |
| mbed_official | 45:b150e0aa009c | 4 | TOOL=GCC_ARM |
| mbed_official | 45:b150e0aa009c | 5 | |
| mbed_official | 45:b150e0aa009c | 6 | echo Compiling with $TOOL |
| mbed_official | 45:b150e0aa009c | 7 | cp configs/eth_v4.json ./mbed_app.json |
| mbed_official | 45:b150e0aa009c | 8 | cp configs/eth-wifi-mbedignore ./.mbedignore |
| mbed_official | 45:b150e0aa009c | 9 | mbed compile -m K64F -t $TOOL |
| mbed_official | 45:b150e0aa009c | 10 | cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-eth-v4.bin |
| mbed_official | 45:b150e0aa009c | 11 | mbed compile -m NUCLEO_F439ZI -t $TOOL |
| mbed_official | 45:b150e0aa009c | 12 | cp ./BUILD/NUCLEO_F439ZI/GCC_ARM/mbed-os-example-client.bin f439zi-$TOOL-eth-v4.bin |
| mbed_official | 45:b150e0aa009c | 13 | |
| mbed_official | 45:b150e0aa009c | 14 | cp configs/eth_v6.json ./mbed_app.json |
| mbed_official | 45:b150e0aa009c | 15 | cp configs/eth-wifi-mbedignore ./.mbedignore |
| mbed_official | 45:b150e0aa009c | 16 | mbed compile -m K64F -t $TOOL |
| mbed_official | 45:b150e0aa009c | 17 | cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-eth-v6.bin |
| mbed_official | 45:b150e0aa009c | 18 | mbed compile -m NUCLEO_F439ZI -t $TOOL |
| mbed_official | 45:b150e0aa009c | 19 | cp ./BUILD/NUCLEO_F439ZI/GCC_ARM/mbed-os-example-client.bin f439zi-$TOOL-eth-v4.bin |
| mbed_official | 45:b150e0aa009c | 20 | |
| mbed_official | 45:b150e0aa009c | 21 | cp configs/wifi_v4.json ./mbed_app.json |
| mbed_official | 45:b150e0aa009c | 22 | cp configs/eth-wifi-mbedignore ./.mbedignore |
| mbed_official | 45:b150e0aa009c | 23 | mbed compile -m K64F -t $TOOL |
| mbed_official | 45:b150e0aa009c | 24 | cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-wifi-v4.bin |
| mbed_official | 45:b150e0aa009c | 25 | mbed compile -m UBLOX_EVK_ODIN_W2 -t $TOOL |
| mbed_official | 45:b150e0aa009c | 26 | cp ./BUILD/UBLOX_EVK_ODIN_W2/GCC_ARM/mbed-os-example-client.bin ublox-odin-$TOOL-wifi-v4.bin |
| mbed_official | 45:b150e0aa009c | 27 | |
| mbed_official | 45:b150e0aa009c | 28 | cp configs/mesh_6lowpan.json ./mbed_app.json |
| mbed_official | 45:b150e0aa009c | 29 | cp configs/mesh-mbedignore ./.mbedignore |
| mbed_official | 45:b150e0aa009c | 30 | mbed compile -m K64F -t $TOOL |
| mbed_official | 45:b150e0aa009c | 31 | cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-6lowpan.bin |
| mbed_official | 45:b150e0aa009c | 32 | mbed compile -m NUCLEO_F439ZI -t $TOOL |
| mbed_official | 45:b150e0aa009c | 33 | cp ./BUILD/NUCLEO_F439ZI/GCC_ARM/mbed-os-example-client.bin f439zi-$TOOL-6lowpan.bin |
| mbed_official | 45:b150e0aa009c | 34 | |
| mbed_official | 45:b150e0aa009c | 35 | cp configs/mesh_thread.json ./mbed_app.json |
| mbed_official | 45:b150e0aa009c | 36 | cp configs/mesh-mbedignore ./.mbedignore |
| mbed_official | 45:b150e0aa009c | 37 | mbed compile -m K64F -t $TOOL |
| mbed_official | 45:b150e0aa009c | 38 | cp BUILD/K64F/GCC_ARM/mbed-os-example-client.bin k64f-$TOOL-Thread.bin |
| mbed_official | 45:b150e0aa009c | 39 | mbed compile -m NUCLEO_F439ZI -t $TOOL |
| mbed_official | 45:b150e0aa009c | 40 | cp ./BUILD/NUCLEO_F439ZI/GCC_ARM/mbed-os-example-client.bin f439zi-$TOOL-Thread.bin |
Wiznet Wi-Fi WizFi310