Doumentation/NuttxPortingGuide.html: Add description of board_early_initialize() and board_late_initialize().

This commit is contained in:
Gregory Nutt
2019-02-18 17:36:11 -06:00
parent 32a300806e
commit 2fbec4cdf6
4 changed files with 288 additions and 239 deletions
+2 -11
View File
@@ -72,19 +72,10 @@
* 3. Common Board Interfaces.
*
* Any interface that is common across all boards should be prefixed
* with board_ and should be prototyped in this header file. These
* board_ definitions provide the interface between the board-level
* with board_ and should be prototyped in the board.h header file.
* These board_ definitions provide the interface between the board-level
* logic and the architecture-specific logic.
*
* Board related declarations are retained the file include/nuttx/board.h.
*
* There is also a configs/<board>/include/board.h header file that
* can be used to communicate other board-specific information between
* the architecture logic and even application logic. Any definitions
* which are common between a single architecture and several boards
* should go in this board.h header file; this file is reserved for
* board-related definitions common to all architectures.
*
* 4. Board-Specific Interfaces.
*
* Any interface which is unique to a board should be prefixed with