source: rtems/bsps/arm/stm32f4/start/bspstarthook.c @ ba619b7f

Last change on this file since ba619b7f was ba619b7f, checked in by Joel Sherrill <joel@…>, on 03/01/22 at 21:38:20

bsps/arm/: Scripted embedded brains header file clean up

Updates #4625.

  • Property mode set to 100644
File size: 522 bytes
Line 
1/*
2 * Copyright (c) 2012 Sebastian Huber.  All rights reserved.
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#include <bsp.h>
10#include <bsp/start.h>
11
12void BSP_START_TEXT_SECTION bsp_start_hook_0(void)
13{
14  /* Do nothing */
15}
16
17void BSP_START_TEXT_SECTION bsp_start_hook_1(void)
18{
19  bsp_start_copy_sections();
20  bsp_start_clear_bss();
21
22  /* At this point we can use objects outside the .start section */
23}
Note: See TracBrowser for help on using the repository browser.