コード例 #1
0
ファイル: bspstarthook.c プロジェクト: AndroidMarv/rtems
void BSP_START_TEXT_SECTION bsp_start_hook_1(void)
{
  bsp_start_copy_sections();
  bsp_start_clear_bss();

  /* At this point we can use objects outside the .start section */
}
コード例 #2
0
ファイル: bspstarthooks.c プロジェクト: atixing/rtems
BSP_START_TEXT_SECTION void bsp_start_hook_1(void)
{
  arm_a9mpcore_start_hook_1();
  bsp_start_copy_sections();
  setup_mmu_and_cache();
  bsp_start_clear_bss();
}
コード例 #3
0
ファイル: bspstarthooks.c プロジェクト: AlexShiLucky/rtems
BSP_START_TEXT_SECTION void bsp_start_hook_1(void)
{
  stop_dma_activities();
  bsp_start_copy_sections();
  setup_mmu_and_cache();
  setup_uarts();
  setup_timer();
  bsp_start_clear_bss();
}
コード例 #4
0
ファイル: bspstarthooks.c プロジェクト: AoLaD/rtems
BSP_START_TEXT_SECTION void bsp_start_hook_1( void )
{
  lpc176x_init_memory_map();
  lpc176x_init_memory_accelerator();
  lpc176x_stop_gpdma();
  lpc176x_stop_usb();
  bsp_start_copy_sections();
  bsp_start_clear_bss();

  /* At this point we can use objects outside the .start section  */
}
コード例 #5
0
ファイル: bspstarthooks.c プロジェクト: BlueFireworks/rtems
BSP_START_TEXT_SECTION void bsp_start_hook_1(void)
{
  lpc24xx_init_memory_map();
  lpc24xx_init_memory_accelerator();
  lpc24xx_init_emc_dynamic();
  lpc24xx_init_mpu();
  lpc24xx_stop_gpdma();
  lpc24xx_stop_ethernet();
  lpc24xx_stop_usb();
  bsp_start_copy_sections();

  /* At this point we can use objects outside the .start section */
}
コード例 #6
0
ファイル: bspstarthooks.c プロジェクト: darnir/rtems
void BSP_START_TEXT_SECTION bsp_start_hook_1(void)
{
  bsp_start_copy_sections();
  bsp_memory_management_initialize();
  bsp_start_clear_bss();
}