Esempio n. 1
0
/* Set up and initialize hardware prior to call to main */
void Board_SystemInit(void)
{
	/* Setup system clocking and memory. This is done early to allow the
	   application and tools to clear memory and use scatter loading to
	   external memory. */
	Board_SetupMuxing();
	Chip_SetupXtalClocking();
}
Esempio n. 2
0
/* Set up and initialize hardware prior to call to main */
void Board_SystemInit(void)
{
	volatile int32_t delay;

	/* Setup system clocking and memory. This is done early to allow the
	   application and tools to clear memory and use scatter loading to
	   external memory. */
	Board_SetupMuxing();
	Board_SetupClocking();

	/* este retardo se coloca para esperar a que se estabilice el PLL */
	delay = 5000;
	while (delay--);
}
Esempio n. 3
0
/* Set up and initialize hardware prior to call to main */
void Board_SystemInit(void)
{
	/* Setup system clocking and muxing */
	Board_SetupMuxing();/* Muxing first as it sets up ext oscillator pins */
	Board_SetupClocking();
}