63 lines
2 KiB
C
63 lines
2 KiB
C
|
/******************************************************************************
|
|||
|
* @file system_tle986x.c
|
|||
|
* @brief Device specific initialization for the TLE987x-Series according
|
|||
|
* to CMSIS
|
|||
|
* @version V0.2
|
|||
|
* @date 15 Oct 2012
|
|||
|
*
|
|||
|
* @note
|
|||
|
* Copyright (C) 2012-2014 Infineon Technologies AG. All rights reserved.
|
|||
|
|
|||
|
*
|
|||
|
* @par
|
|||
|
* Infineon Technologies AG (Infineon) is supplying this software for use with
|
|||
|
* Infineon<EFBFBD>s microcontrollers.
|
|||
|
*
|
|||
|
* This file can be freely distributed within development tools that are
|
|||
|
* supporting such microcontrollers.
|
|||
|
*
|
|||
|
*
|
|||
|
* @par
|
|||
|
* THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
|
|||
|
* OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
|
|||
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
|
|||
|
* INFINEON SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL,
|
|||
|
* OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
|
|||
|
*
|
|||
|
******************************************************************************/
|
|||
|
|
|||
|
#include <tle_device.h>
|
|||
|
#include <scu.h>
|
|||
|
#include <wdt1.h>
|
|||
|
#include <DAVE.h>
|
|||
|
/*----------------------------------------------------------------------------
|
|||
|
Define BSL parameter
|
|||
|
*----------------------------------------------------------------------------*/
|
|||
|
#if (NAC_NAD_EN == 1)
|
|||
|
/*lint -e950 Suppressing MISRA 2012 Directive 2.1 */ \
|
|||
|
#if defined( __CC_ARM )
|
|||
|
const uint32 p_NACNAD __attribute__((at(NACStart),used)) = (uint32)NAD_NAC;
|
|||
|
#elif defined ( __GNUC__ )
|
|||
|
const uint32_t p_NACNAD __attribute__ ((section (".secNACNAD"))) = (uint32_t)NAD_NAC;
|
|||
|
#else
|
|||
|
#error "ERROR: Compiler not supported"
|
|||
|
#endif
|
|||
|
/*lint +e950 */
|
|||
|
#endif
|
|||
|
|
|||
|
void SystemInit(void)
|
|||
|
{
|
|||
|
/* Vector table relocation */
|
|||
|
CPU->VTOR.reg = ProgFlashStart;
|
|||
|
SCU_ClkInit();
|
|||
|
WDT1_Init();
|
|||
|
|
|||
|
/* erratas */
|
|||
|
/* stop Timer21 */
|
|||
|
TIMER21->T2CON.bit.TR2 = 0;
|
|||
|
/* clear IE flags */
|
|||
|
TIMER21->T2CON1.reg = 0;
|
|||
|
/* clear IS flags */
|
|||
|
TIMER21->T2ICLR.reg = (uint8)0xC0;
|
|||
|
}
|