示例#1
0
void board_initialize(void)
{
  /* Perform the board initialization on the start-up thread.  Some
   * initializations may fail in this case due to the limited capability of
   * the start-up thread.
   */

  (void)stm32_bringup();
}
示例#2
0
int board_app_initialize(uintptr_t arg)
{
  /* Did we already initialize via board_initialize()? */

#ifndef CONFIG_BOARD_INITIALIZE
  return stm32_bringup();
#else
  return OK;
#endif
}
示例#3
0
int board_app_initialize(void)
{
#ifdef CONFIG_BOARD_INITIALIZE
  /* Board initialization already performed by board_initialize() */

  return OK;
#else
  /* Perform board-specific initialization */

  return stm32_bringup();
#endif
}
示例#4
0
文件: stm32_boot.c 项目: dagar/NuttX
void board_initialize(void)
{
  /* Perform board-specific initialization here if so configured */

  (void)stm32_bringup();
}
示例#5
0
void board_initialize(void)
{
  /* Perform board-specific initialization */

  (void)stm32_bringup();
}
示例#6
0
int board_app_initialize(uintptr_t arg)
{
  /* Perform board initialization here */

  return stm32_bringup();
}
示例#7
0
int board_app_initialize(uintptr_t arg)
{
  return stm32_bringup();
}