From de783eed78f526b58d7e4476e5fbc0ca33f22f96 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie <alexandre.abadie@inria.fr> Date: Tue, 27 Feb 2018 14:34:18 +0100 Subject: [PATCH] boards/nucleo-f411re: rename to marketing name --- boards/{nucleo-f411 => nucleo-f411re}/Makefile | 0 boards/{nucleo-f411 => nucleo-f411re}/Makefile.dep | 0 boards/{nucleo-f411 => nucleo-f411re}/Makefile.features | 0 boards/{nucleo-f411 => nucleo-f411re}/Makefile.include | 2 +- .../{nucleo-f411 => nucleo-f411re}/include/periph_conf.h | 6 +++--- cpu/stm32f4/Makefile.features | 2 +- drivers/dsp0401/include/dsp0401_params.h | 2 +- tests/pkg_fatfs/Makefile | 2 +- tests/pkg_fatfs_vfs/Makefile | 2 +- tests/pkg_semtech-loramac/README.md | 8 ++++---- tests/unittests/Makefile | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) rename boards/{nucleo-f411 => nucleo-f411re}/Makefile (100%) rename boards/{nucleo-f411 => nucleo-f411re}/Makefile.dep (100%) rename boards/{nucleo-f411 => nucleo-f411re}/Makefile.features (100%) rename boards/{nucleo-f411 => nucleo-f411re}/Makefile.include (76%) rename boards/{nucleo-f411 => nucleo-f411re}/include/periph_conf.h (98%) diff --git a/boards/nucleo-f411/Makefile b/boards/nucleo-f411re/Makefile similarity index 100% rename from boards/nucleo-f411/Makefile rename to boards/nucleo-f411re/Makefile diff --git a/boards/nucleo-f411/Makefile.dep b/boards/nucleo-f411re/Makefile.dep similarity index 100% rename from boards/nucleo-f411/Makefile.dep rename to boards/nucleo-f411re/Makefile.dep diff --git a/boards/nucleo-f411/Makefile.features b/boards/nucleo-f411re/Makefile.features similarity index 100% rename from boards/nucleo-f411/Makefile.features rename to boards/nucleo-f411re/Makefile.features diff --git a/boards/nucleo-f411/Makefile.include b/boards/nucleo-f411re/Makefile.include similarity index 76% rename from boards/nucleo-f411/Makefile.include rename to boards/nucleo-f411re/Makefile.include index c05ee3f9af..2bf49afce2 100644 --- a/boards/nucleo-f411/Makefile.include +++ b/boards/nucleo-f411re/Makefile.include @@ -1,4 +1,4 @@ -# define the cpu used by the nucleo-f411 board +# define the cpu used by the nucleo-f411re board export CPU = stm32f4 export CPU_MODEL = stm32f411re diff --git a/boards/nucleo-f411/include/periph_conf.h b/boards/nucleo-f411re/include/periph_conf.h similarity index 98% rename from boards/nucleo-f411/include/periph_conf.h rename to boards/nucleo-f411re/include/periph_conf.h index 16be95323e..60e7fa08a8 100644 --- a/boards/nucleo-f411/include/periph_conf.h +++ b/boards/nucleo-f411re/include/periph_conf.h @@ -7,13 +7,13 @@ */ /** - * @defgroup boards_nucleo-f411 STM32 Nucleo-F411 + * @defgroup boards_nucleo-f411re STM32 Nucleo-F411RE * @ingroup boards_common_nucleo64 - * @brief Support for the STM32 Nucleo-F411 + * @brief Support for the STM32 Nucleo-F411RE * @{ * * @file - * @name Peripheral MCU configuration for the nucleo-f411 board + * @name Peripheral MCU configuration for the nucleo-f411re board * * @author Alexandre Abadie <alexandre.abadie@inria.fr> */ diff --git a/cpu/stm32f4/Makefile.features b/cpu/stm32f4/Makefile.features index d4842c3edd..ded94857b9 100644 --- a/cpu/stm32f4/Makefile.features +++ b/cpu/stm32f4/Makefile.features @@ -6,7 +6,7 @@ FEATURES_PROVIDED += periph_hwrng # CPU variable is available, we need to filter by board. # BOARDS_WITHOUT_HWRNG += nucleo-f401re -BOARDS_WITHOUT_HWRNG += nucleo-f411 +BOARDS_WITHOUT_HWRNG += nucleo-f411re BOARDS_WITHOUT_HWRNG += nucleo-f446 BOARDS_WITHOUT_HWRNG += nucleo144-f446 diff --git a/drivers/dsp0401/include/dsp0401_params.h b/drivers/dsp0401/include/dsp0401_params.h index 60ffac7713..11fd96d5b1 100644 --- a/drivers/dsp0401/include/dsp0401_params.h +++ b/drivers/dsp0401/include/dsp0401_params.h @@ -29,7 +29,7 @@ extern "C" { #endif /** - * @name Set default configuration parameters for the DSP0401 (for Nucleo-F411) + * @name Set default configuration parameters for the DSP0401 (for Nucleo-F411RE) * @{ */ #ifndef DSP0401_PARAM_SDI_PIN diff --git a/tests/pkg_fatfs/Makefile b/tests/pkg_fatfs/Makefile index bc317a8d41..7cfb3e8114 100644 --- a/tests/pkg_fatfs/Makefile +++ b/tests/pkg_fatfs/Makefile @@ -14,7 +14,7 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove arduino-mega2560 nucleo144-f412 nucleo144-f413 nucleo144-f429 nucleo144-f446 \ nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo32-l031 \ nucleo32-l432 nucleo-f072rb nucleo-f091rc nucleo-f103rb nucleo-f302r8 \ - nucleo-f303re nucleo-f334r8 nucleo-f401re nucleo-f410rb nucleo-f411 \ + nucleo-f303re nucleo-f334r8 nucleo-f401re nucleo-f410rb nucleo-f411re \ nucleo-f446 nucleo-l053 nucleo-l073 nucleo-l152 nucleo-l476 \ nz32-sc151 openmote-cc2538 pba-d-01-kw2x remote-pa remote-reva \ remote-revb samd21-xpro saml21-xpro samr21-xpro sltb001a \ diff --git a/tests/pkg_fatfs_vfs/Makefile b/tests/pkg_fatfs_vfs/Makefile index a351dab39b..772ac4ee20 100644 --- a/tests/pkg_fatfs_vfs/Makefile +++ b/tests/pkg_fatfs_vfs/Makefile @@ -37,7 +37,7 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove arduino-mega2560 nucleo144-f412 nucleo144-f413 nucleo144-f429 nucleo144-f446 \ nucleo32-f042 nucleo32-f303 nucleo32-l031 \ nucleo32-l432 nucleo-f072rb nucleo-f091rc nucleo-f103rb nucleo-f302r8 \ - nucleo-f303re nucleo-f334r8 nucleo-f401re nucleo-f410rb nucleo-f411 \ + nucleo-f303re nucleo-f334r8 nucleo-f401re nucleo-f410rb nucleo-f411re \ nucleo-f446 nucleo-l053 nucleo-l073 nucleo-l152 nucleo-l476 \ nz32-sc151 openmote-cc2538 pba-d-01-kw2x remote-pa remote-reva \ remote-revb samd21-xpro saml21-xpro samr21-xpro sltb001a \ diff --git a/tests/pkg_semtech-loramac/README.md b/tests/pkg_semtech-loramac/README.md index 10aa0b5e02..9529d04d53 100644 --- a/tests/pkg_semtech-loramac/README.md +++ b/tests/pkg_semtech-loramac/README.md @@ -49,9 +49,9 @@ board. Depending on the type of radio device, set the `LORA_DRIVER` variable accordingly: For example: ``` - LORA_DRIVER=sx1272 make BOARD=nucleo-f411 -C pkg/semtech-loramac flash term + LORA_DRIVER=sx1272 make BOARD=nucleo-f411re -C pkg/semtech-loramac flash term ``` -will build the application for a nucleo-f411 with an SX1272 based mbed LoRa shield. +will build the application for a nucleo-f411re with an SX1272 based mbed LoRa shield. The SX1276 is the default value. @@ -59,9 +59,9 @@ The other parameter that has to be set at build time is the geographic region: `EU868`, `US915`, etc. See LoRaWAN regional parameters for more information. ``` - LORA_REGION=US915 LORA_DRIVER=sx1272 make BOARD=nucleo-f411 -C pkg/semtech-loramac flash term + LORA_REGION=US915 LORA_DRIVER=sx1272 make BOARD=nucleo-f411re -C pkg/semtech-loramac flash term ``` -will build the application for a nucleo-f411 with an SX1272 based mbed LoRa shield +will build the application for a nucleo-f411re with an SX1272 based mbed LoRa shield for US915 region. The default region is `EU868`. diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index 85a3a85f80..e541d97e26 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -140,7 +140,7 @@ ARM_CORTEX_M_BOARDS := airfy-beacon \ nucleo-f334r8 \ nucleo-f401re \ nucleo-f410rb \ - nucleo-f411 \ + nucleo-f411re \ nucleo-f446 \ nucleo-l053 \ nucleo-l073 \ -- GitLab