Clear Match Tier LPC51U68

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Clear Match Tier LPC51U68

413 Views
carlosmedeiros
Contributor I

Hello,

Im currently working with a LPC51U58, doing kind of a code migration from LPC11u14.

For the LPC11u14 I had a old code from a colleague : 

*****************************************************************************************************************

void TIMER32_0_IRQHandler(void)
{
Chip_TIMER_ClearMatch(LPC_TIMER32_0, 1);
Chip_TIMER_Reset(LPC_TIMER32_0);
sleeping = FALSE;
}

Where:


/**
* @brief Clears a (pending) match interrupt
* @param pTMR : Pointer to timer IP register address
* @param matchnum : Match interrupt number to clear
* @return Nothing
* @note Clears a pending timer match interrupt.
*/
STATIC INLINE void Chip_TIMER_ClearMatch(LPC_TIMER_T *pTMR, int8_t matchnum)
{
pTMR->IR = TIMER_IR_CLR(matchnum);
}

******************************************************************************************************************

I'm trying to recreate for the LPC51U68, but i don't find in the api a function that does the same of this last, anyone knows if theres a way of using other function to hve the same result or is it better to create my own?

Thank you!

Tags (1)
0 Kudos
1 Reply

336 Views
jeremyzhou
NXP Employee
NXP Employee

Hi Carlos Medeiros,

Thank you for your interest in NXP Semiconductor products and the opportunity to serve you.
To provide the fastest possible support,
I'd highly recommend you to refer to the ctimer demos in the SDK.

MCUXpresso SDK|NXP
Have a great day,
TIC

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos