Esempio n. 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();
}
Esempio n. 2
0
File: tn_user.c Progetto: alepnm/lcd
//----------------------------------------------------------------------------
void tn_cpu_int_enable()
{
    tn_arm_enable_interrupts();
}