Beispiel #1
0
//----------------------------------------------------------------------------
// Processor specific routine
//
// For LPC2xxx, here we enable all int vectors that we use ( not just tick timer)
// and than enable IRQ int in ARM core
//----------------------------------------------------------------------------
void tn_cpu_int_enable()
{
   //-- VIC Channel 6 - UART0, 15 - EINT1.
   VICIntEnable = (1<<6) | (1<<15);
   tn_arm_enable_interrupts();
}
Beispiel #2
0
//----------------------------------------------------------------------------
void tn_cpu_int_enable()
{
    tn_arm_enable_interrupts();
}