diff --git a/platform/stm32nucleo-spirit1/README.md b/platform/stm32nucleo-spirit1/README.md index 6d574010d..313a8d3c0 100644 --- a/platform/stm32nucleo-spirit1/README.md +++ b/platform/stm32nucleo-spirit1/README.md @@ -102,6 +102,11 @@ If the X-NUCLEO-IDS01A5 sub-1GHz RF expansion board is used, the following must This will create executables for UDP sender and receiver nodes. +In order to generate binary files that can be flashed on the STM32 Nucleo the following command must be run: + + arm-none-eabi-objcopy -O binary unicast-sender.stm32nucleo-spirit1 unicast-sender.bin + arm-none-eabi-objcopy -O binary unicast-receiver.stm32nucleo-spirit1 unicast-receiver.bin + These executables can be programmed on the nodes using the procedure described hereafter. diff --git a/regression-tests/01-compile-base/Makefile b/regression-tests/01-compile-base/Makefile index 878d4324a..b6410c780 100644 --- a/regression-tests/01-compile-base/Makefile +++ b/regression-tests/01-compile-base/Makefile @@ -2,7 +2,6 @@ EXAMPLESDIR=../../examples TOOLSDIR=../../tools EXAMPLES = \ -hello-world/stm32nucleo-spirit1 \ hello-world/avr-raven \ hello-world/exp5438 \ hello-world/eval-adf7xxxmb4z \ @@ -15,7 +14,6 @@ hello-world/z1 \ eeprom-test/native \ collect/sky \ er-rest-example/sky \ -er-rest-example/stm32nucleo-spirit1 \ example-shell/native \ netperf/sky \ powertrace/sky \ @@ -36,7 +34,7 @@ wget/minimal-net \ z1/z1 \ settings-example/avr-raven \ ipv6/multicast/sky \ -ipv6/multicast/stm32nucleo-spirit1 \ + TOOLS= diff --git a/regression-tests/15-compile-arm-apcs-ports/Makefile b/regression-tests/15-compile-arm-apcs-ports/Makefile index 61f37d47e..e73a9a39f 100644 --- a/regression-tests/15-compile-arm-apcs-ports/Makefile +++ b/regression-tests/15-compile-arm-apcs-ports/Makefile @@ -4,7 +4,6 @@ TOOLSDIR=../../tools EXAMPLES = \ hello-world/econotag \ hello-world/mbxxx \ -hello-world/stm32nucleo-spirit1 \ ipv6/rpl-border-router/econotag \ er-rest-example/econotag \ webserver-ipv6/econotag \