Exemple #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();
}
Exemple #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
}
Exemple #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
}
Exemple #4
0
void board_initialize(void)
{
  /* Perform board-specific initialization here if so configured */

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

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

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