We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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?
Did you enable the interrupt? Per reset all interrupts are disabled. Just a thought.
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?