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.

  • @@ -4498,7 +4498,7 @@ CONFIG_SCHED_WAITPID=y
    1. - 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.

    2. @@ -5241,7 +5241,7 @@ xxd -i romfs_img >nsh_romfsimg.h
    3. Start-up, Default behavior
    4. Start-up script
    5. Start-up script
    6. -
    7. stm32_nsh.c
    8. +
    9. stm32_appinit.c
    10. Synchronous built-in applications
    11. test
    12. time
    13. diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 45f10dcadd..2422c398eb 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -5572,8 +5572,8 @@ int kbd_decode(FAR struct lib_instream_s *stream, FAR struct kbd_getstate_s *sta

      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.