sim configuration: Add support for board_app_initialize() which is needed when CONFIG_LIB_BOARDCTL=y
This commit is contained in:
parent
ceda8bc73d
commit
b9b8b34bca
@ -44,7 +44,15 @@
|
||||
* Public Functions
|
||||
***************************************************************************/
|
||||
|
||||
/* Application initialization stub for boardctl() */
|
||||
/****************************************************************************
|
||||
* Name: board_app_initialize
|
||||
*
|
||||
* Description:
|
||||
* Perform application specific initialization. This function is never
|
||||
* called directly from application code, but only indirectly via the
|
||||
* (non-standard) boardctl() interface using the command BOARDIOC_INIT.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_LIB_BOARDCTL
|
||||
int board_app_initialize(void)
|
||||
|
@ -142,7 +142,7 @@ void board_initialize(void);
|
||||
* called directly from application code, but only indirectly via the
|
||||
* (non-standard) boardctl() interface using the command BOARDIOC_INIT.
|
||||
*
|
||||
*****************************************************************************/
|
||||
****************************************************************************/
|
||||
|
||||
#ifdef CONFIG_LIB_BOARDCTL
|
||||
int board_app_initialize(void);
|
||||
|
Loading…
Reference in New Issue
Block a user