Hi,
Did you enable the interrupt?
void NVIC_init_IRQs (void) {
S32_NVIC->ICPR[1] = 1 << (49 % 32); /* IRQ49-LPIT0 ch1: clr any pending IRQ*/
S32_NVIC->ISER[1] = 1 << (49 % 32); /* IRQ49-LPIT0 ch1: enable IRQ */
S32_NVIC->IP[49] = 0xA0; /* IRQ49-LPIT0 ch1: priority 10 of 0-15*/
}
Also, it needs to be enabled in LPIT0_MIER register
LPIT0->MIER = 0x00000003;
Regards,
Daniel