Hi Sujai,
It is possible. You can configure both timers, start one timer at any moment and then start the second timer inside the interrupts of the first timer. E.g.
int main(void)
{
init_LPTMR0 ();
init_LPTMR1 ();
LPTMR0_CSR |= LPTMR_CSR_TEN_MASK; //Turn on LPT and start counting
while(1)
{
}
return 0;
}
void LPTimer0_IRQHandler(void)
{
LPTMR1_CSR |= LPTMR_CSR_TEN_MASK; //Turn on LPT and start counting
}
Best regards,
Carlos
Technical Support Engineer