1.2.24.32 1.3.24.32 1.4.25.32 1.5.23.32 1.6.25.32 1.7.26.32 1.29.27.32 1.30.17.32 1.31.17.32 1.33.19.32 1.37.17.32 1.40.24.32 TCCx_Compare24bitPeriodSet Function
C
/* x = TCC instance number */
void TCCx_Compare24bitPeriodSet( uint32_t period );
Summary
Sets the period value of a given timer.
Description
This function writes the period value. When timer counter matches period value,counter is reset and interrupt can be generated.
Precondition
TCCx_CompareInitialize() function must have been called first.
Parameters
Param | Description |
---|---|
period | new period value to set for timer |
Returns
None.
Example
uint32_t period = 0x500;
TCC0_CompareInitialize();
TCC0_Compare24bitPeriodSet(period);
Remarks
The caller must know the number of significant bytes of timer. Period value is right-aligned.