Exemple #1
0
void usart2_interrupt(void)
{
	usart_interrupt(configs[1]);
}
Exemple #2
0
void usart3_interrupt(void)
{
	usart_interrupt(configs[2]);
}
Exemple #3
0
void usart1_interrupt(void)
{
	usart_interrupt(configs[0]);
}
Exemple #4
0
static void sysc_isr( void )
{
	if( PIT->sr & PITS ) pit_isr();
	else usart_interrupt( 0 );	/* by elimination */
	AIC->eoicr = 0;		/* acknowledge the interrupt to AIC */
}