1.2.24.18 1.3.24.18 1.4.25.18 1.5.23.18 1.6.25.18 1.7.26.18 1.29.27.18 1.30.17.18 1.31.17.18 1.33.19.18 1.37.17.18 1.40.24.18 TCCx_TimerFrequencyGet Function

C

/* x = TCC instance number */
uint32_t TCCx_TimerFrequencyGet( void );

Summary

Provides the given timer's counter-increment frequency.

Description

This function provides the frequency at which the given counter increments. It can be used to convert differences between counter values to real time or real-time intervals to timer period values.

Precondition

TCCx_TimerInitialize() function must have been called first.

Parameters

None.

Returns

Frequency (in Hz) at which the timer's counter increments.

Example

uint32_t frequency = 0;
TCC0_TimerInitialize();
frequency = TCC0_TimerFrequencyGet();

Remarks

None.