Hi all, Im new in ARM programming and I am trying to build sample timer0 interrupt program.I am using uvision 4.02 32k code limited evaluation version.When debuging I see interrupt is generated but flow never branching isr function.Why flow is not branching to isr?Because of evaluation version?
VICVectAddr3 = (unsigned)T0isr; //Set the timer ISR vector address VICVectCntl3 = 0x00000024; //Set channel VICIntEnable |= 0x00000010; //Enable the interrupt
My code is like this.Which interrupt are you talking about?Global interrupt?How can I set global interrupt?