From 5821bfd68ef5b8e32aed73abbe00390cc60337d2 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 27 Feb 2018 14:35:57 +0100 Subject: [PATCH] boards/nucleo-f446re: rename to marketing name --- boards/{nucleo-f446 => nucleo-f446re}/Makefile | 0 boards/{nucleo-f446 => nucleo-f446re}/Makefile.dep | 0 boards/{nucleo-f446 => nucleo-f446re}/Makefile.features | 0 boards/{nucleo-f446 => nucleo-f446re}/Makefile.include | 2 +- boards/{nucleo-f446 => nucleo-f446re}/include/periph_conf.h | 6 +++--- cpu/stm32f4/Makefile.features | 2 +- tests/mpu_stack_guard/Makefile | 2 +- tests/pkg_fatfs/Makefile | 2 +- tests/pkg_fatfs_vfs/Makefile | 2 +- tests/unittests/Makefile | 2 +- 10 files changed, 9 insertions(+), 9 deletions(-) rename boards/{nucleo-f446 => nucleo-f446re}/Makefile (100%) rename boards/{nucleo-f446 => nucleo-f446re}/Makefile.dep (100%) rename boards/{nucleo-f446 => nucleo-f446re}/Makefile.features (100%) rename boards/{nucleo-f446 => nucleo-f446re}/Makefile.include (76%) rename boards/{nucleo-f446 => nucleo-f446re}/include/periph_conf.h (98%) diff --git a/boards/nucleo-f446/Makefile b/boards/nucleo-f446re/Makefile similarity index 100% rename from boards/nucleo-f446/Makefile rename to boards/nucleo-f446re/Makefile diff --git a/boards/nucleo-f446/Makefile.dep b/boards/nucleo-f446re/Makefile.dep similarity index 100% rename from boards/nucleo-f446/Makefile.dep rename to boards/nucleo-f446re/Makefile.dep diff --git a/boards/nucleo-f446/Makefile.features b/boards/nucleo-f446re/Makefile.features similarity index 100% rename from boards/nucleo-f446/Makefile.features rename to boards/nucleo-f446re/Makefile.features diff --git a/boards/nucleo-f446/Makefile.include b/boards/nucleo-f446re/Makefile.include similarity index 76% rename from boards/nucleo-f446/Makefile.include rename to boards/nucleo-f446re/Makefile.include index d892d86b04..dd16788fd9 100644 --- a/boards/nucleo-f446/Makefile.include +++ b/boards/nucleo-f446re/Makefile.include @@ -1,4 +1,4 @@ -# define the cpu used by the nucleo-f446 board +# define the cpu used by the nucleo-f446re board export CPU = stm32f4 export CPU_MODEL = stm32f446re diff --git a/boards/nucleo-f446/include/periph_conf.h b/boards/nucleo-f446re/include/periph_conf.h similarity index 98% rename from boards/nucleo-f446/include/periph_conf.h rename to boards/nucleo-f446re/include/periph_conf.h index 6b1c23762d..64e6bf9cd3 100644 --- a/boards/nucleo-f446/include/periph_conf.h +++ b/boards/nucleo-f446re/include/periph_conf.h @@ -7,13 +7,13 @@ */ /** - * @defgroup boards_nucleo-f446 STM32 Nucleo-F446 + * @defgroup boards_nucleo-f446re STM32 Nucleo-F446RE * @ingroup boards_common_nucleo64 - * @brief Support for the STM32 Nucleo-F446 + * @brief Support for the STM32 Nucleo-F446RE * @{ * * @file - * @name Peripheral MCU configuration for the nucleo-f446 board + * @name Peripheral MCU configuration for the nucleo-f446re board * * @author Alexandre Abadie */ diff --git a/cpu/stm32f4/Makefile.features b/cpu/stm32f4/Makefile.features index ded94857b9..eaed0787e2 100644 --- a/cpu/stm32f4/Makefile.features +++ b/cpu/stm32f4/Makefile.features @@ -7,7 +7,7 @@ FEATURES_PROVIDED += periph_hwrng # BOARDS_WITHOUT_HWRNG += nucleo-f401re BOARDS_WITHOUT_HWRNG += nucleo-f411re -BOARDS_WITHOUT_HWRNG += nucleo-f446 +BOARDS_WITHOUT_HWRNG += nucleo-f446re BOARDS_WITHOUT_HWRNG += nucleo144-f446 -include $(RIOTCPU)/stm32_common/Makefile.features diff --git a/tests/mpu_stack_guard/Makefile b/tests/mpu_stack_guard/Makefile index a264c460c0..c3024b1eb4 100644 --- a/tests/mpu_stack_guard/Makefile +++ b/tests/mpu_stack_guard/Makefile @@ -23,7 +23,7 @@ BOARD_WHITELIST += nucleo-f207zg # cortex-m3 BOARD_WHITELIST += nucleo-f303re # cortex-m4f BOARD_WHITELIST += nucleo-f334r8 # cortex-m4f BOARD_WHITELIST += nucleo-f401re # cortex-m4f -BOARD_WHITELIST += nucleo-f446 # cortex-m4f +BOARD_WHITELIST += nucleo-f446re # cortex-m4f BOARD_WHITELIST += nucleo-l152 # cortex-m3 BOARD_WHITELIST += openmote-cc2538 # cortex-m3 BOARD_WHITELIST += pba-d-01-kw2x # cortex-m4 diff --git a/tests/pkg_fatfs/Makefile b/tests/pkg_fatfs/Makefile index 7cfb3e8114..c508d33855 100644 --- a/tests/pkg_fatfs/Makefile +++ b/tests/pkg_fatfs/Makefile @@ -15,7 +15,7 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove arduino-mega2560 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-f411re \ - nucleo-f446 nucleo-l053 nucleo-l073 nucleo-l152 nucleo-l476 \ + nucleo-f446re 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 \ sodaq-autonomo sodaq-explorer spark-core stm32f0discovery \ diff --git a/tests/pkg_fatfs_vfs/Makefile b/tests/pkg_fatfs_vfs/Makefile index 772ac4ee20..36c7968aaa 100644 --- a/tests/pkg_fatfs_vfs/Makefile +++ b/tests/pkg_fatfs_vfs/Makefile @@ -38,7 +38,7 @@ BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove arduino-mega2560 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-f411re \ - nucleo-f446 nucleo-l053 nucleo-l073 nucleo-l152 nucleo-l476 \ + nucleo-f446re 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 \ sodaq-autonomo sodaq-explorer spark-core stm32f0discovery \ diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index e541d97e26..dc4dc918f4 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -141,7 +141,7 @@ ARM_CORTEX_M_BOARDS := airfy-beacon \ nucleo-f401re \ nucleo-f410rb \ nucleo-f411re \ - nucleo-f446 \ + nucleo-f446re \ nucleo-l053 \ nucleo-l073 \ nucleo-l152 \