Content originally posted in LPCWare by fjrg76 on Wed Sep 05 22:05:56 MST 2012
There is not such a conflict, instead I made I mistake. I based my code in an example, but it was using MR0, whilst I'm using MR3, so I didn't acknowledge the correct interrupt:
void TIMER32_0_IRQHandler(void)
{
LPC_TMR32B0->IR = BIT(2); // <-- This is the correct value (former was 1)
++usTicks;
}
Thank you anyway!!!