diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html index 6bb960764d..be74af7062 100644 --- a/Documentation/NuttShell.html +++ b/Documentation/NuttShell.html @@ -4098,7 +4098,7 @@ mount -t vfat /dev/ram1 /tmp
board_app_initialize()
:
Next any architecture-specific NSH initialization will be performed (if any).
- For the STM3240G-EVAL, this architecture specific initialization can be found at configs/stm3240g-eval/src/stm32_nsh.c
.
+ For the STM3240G-EVAL, this architecture specific initialization can be found at configs/stm3240g-eval/src/stm32_appinit.c
.
This it does things like: (1) Initialize SPI devices, (2) Initialize SDIO, and (3) mount any SD cards that may be inserted.
- You can extend the initialization logic in configs/stm3240g-eval/src/stm32_nsh.c
.
+ You can extend the initialization logic in configs/stm3240g-eval/src/stm32_appinit.c
.
The logic there is called each time that NSH is started and is good place in particular for any device-related initialization.
stm32_nsh.c
stm32_appinit.c
test
time
Examples:
- The function nsh_waiter()
in the file configs/nucleus2g/src/up_nsh.c
and
- the function nsh_waiter()
in the file configs/olimex-lpc1766stk/src/up_nsh.c
.
+ The function nsh_waiter()
in the file configs/nucleus2g/src/lpc17_appinit.c
and
+ the function nsh_waiter()
in the file configs/olimex-lpc1766stk/src/lpc17_appinit.c
.