예제 #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
파일: stm32_appinit.c 프로젝트: dagar/NuttX
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
파일: stm32_appinit.c 프로젝트: a1ien/nuttx
int board_app_initialize(uintptr_t arg)
{
  /* Perform board initialization here */

  return stm32_bringup();
}
예제 #7
0
파일: stm32_appinit.c 프로젝트: a1ien/nuttx
int board_app_initialize(uintptr_t arg)
{
  return stm32_bringup();
}