forked from Imagelibrary/rtems
42 lines
881 B
C
42 lines
881 B
C
/**
|
|
* @file
|
|
*
|
|
* @ingroup RTEMSBSPsARMTMS570
|
|
*
|
|
* @brief First configurations and initializations to the correct
|
|
* functionality of the board.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2014 Premysl Houdek <kom541000@gmail.com>
|
|
*
|
|
* Google Summer of Code 2014 at
|
|
* Czech Technical University in Prague
|
|
* Zikova 1903/4
|
|
* 166 36 Praha 6
|
|
* Czech Republic
|
|
*
|
|
* Based on LPC24xx and LPC1768 BSP
|
|
* by embedded brains GmbH and others
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#include <bsp.h>
|
|
#include <bsp/start.h>
|
|
|
|
BSP_START_TEXT_SECTION void bsp_start_hook_0( void )
|
|
{
|
|
;
|
|
}
|
|
|
|
BSP_START_TEXT_SECTION void bsp_start_hook_1( void )
|
|
{
|
|
bsp_start_copy_sections();
|
|
bsp_start_clear_bss();
|
|
|
|
/* At this point we can use objects outside the .start section */
|
|
}
|