3.2.22 Timer(TMR)

The Timer1 module found in particular family devices shares many features with a classic Type A timer. There is typically a single Timer1 module implemented for each CPU core present in a device. Timers are useful for generating accurate time-based periodic interrupt events for software applications or real-time operating systems. Other uses include counting external pulses or accurate timing measurement of external events by using the timer’s gate feature. The timers found in some particular family devices include the following features:

• Asynchronous and Synchronous Operation

• Software-Selectable Internal or External Clock Sources

• Programmable Interrupt Generation and Priority

• Gated External Pulse Counter

• Software Prescalers: 1:1, 1:8, 1:64 and 1:256

Using The Library

Timer mode is used for periodic interrupt generation. When the timer is enabled, it increments by one on every rising edge of the input clock, and generates an interrupt on a period match and the registered callback function will be called.

Callback method This example demonstrates how to use the timer to generate periodic callback.

/* This function is called after period expires */
void TIMER1_EventHandler(uint32_t status, uintptr_t context)
{
    /* Toggle LED */
    LED_Toggle();
}

int main(void)
{
    /* Register callback function Timer interrupt */
    TMR1_CallbackRegister(TIMER1_EventHandler,(uintptr_t)NULL);

    /* Start the timer channel 0*/
    TMR1_Start();
}

Library Interface

Peripheral library provides the following interfaces:

Functions

NameDescription
TMRx_InitializeInitializes given instance of TMR
TMRx_DeinitializeDe-initializes given instance of TMR
TMRx_StartStarts the given Timer
TMRx_StopStops the given Timer counter
TMRx_PeriodSetSets the period value of a given timer
TMRx_PeriodGetReads the period value of given timer
TMRx_CounterGetReads the timer counter value
TMRx_FrequencyGetProvides the given timer's counter-increment frequency
TMRx_InterruptEnableEnable TMR overflow interrupt
TMRx_InterruptDisableDisable TMR overflow interrupt
TMRx_CallbackRegisterSets the callback_fn function for an match
TMRx_PeriodHasExpiredChecks period expiration
TMRx_StartTimeOutStores current tick count and delay value in the timeout
TMRx_ResetTimeOut Resets current tick count in the timeout
TMRx_IsTimeoutReachedChecks for timeout
TMRx_GetTickCounterReturns current tick count

Data types and constants

NameTypeDescription
TMR_CALLBACKTypedefDefines the function pointer data type and function signature for the TMRx callback function
TMR_TIMEOUTStructDefines the following parameters for a timeout period.