From b6f5f4b545ef51b85524241e0f10adb5c21351a4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 24 Nov 2014 12:33:24 -0600 Subject: Nucleo F4x1RE: Stangeness in initialization noted by Sébastien Lorquet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nuttx/configs/nucleo-f4x1re/src/stm32_boot.c | 5 +++++ nuttx/configs/spark/src/up_boot.c | 9 ++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/nuttx/configs/nucleo-f4x1re/src/stm32_boot.c b/nuttx/configs/nucleo-f4x1re/src/stm32_boot.c index 92f17e489..d9962a8ee 100644 --- a/nuttx/configs/nucleo-f4x1re/src/stm32_boot.c +++ b/nuttx/configs/nucleo-f4x1re/src/stm32_boot.c @@ -121,6 +121,11 @@ void board_initialize(void) #if defined(CONFIG_NSH_LIBRARY) && !defined(CONFIG_NSH_ARCHINIT) nsh_archinitialize(); +#endif + + /* CC3000 wireless initialization */ + +#ifdef CONFIG_WL_CC3000 wireless_archinitialize(0); #endif } diff --git a/nuttx/configs/spark/src/up_boot.c b/nuttx/configs/spark/src/up_boot.c index f0199a6fc..939b8cee9 100644 --- a/nuttx/configs/spark/src/up_boot.c +++ b/nuttx/configs/spark/src/up_boot.c @@ -124,11 +124,14 @@ void board_initialize(void) */ #if defined(CONFIG_NSH_LIBRARY) && !defined(CONFIG_NSH_ARCHINIT) - nsh_archinitialize(); - wireless_archinitialize(0); - + nsh_archinitialize(); #endif + /* CC3000 wireless initialization */ + +#ifdef CONFIG_WL_CC3000 + wireless_archinitialize(0); +#endif } #endif -- cgit v1.2.3