1.7.26.24 TCCx_Compare16bitCounterSet Function

C

/* x = TCC instance number */
void TCCx_Compare16bitCounterSet( uint16_t count );

Summary

Sets new timer counter value.

Description

This function sets new timer counter value.

Precondition

TCCx_CompareInitialize() function must have been called first.

Parameters

Param Description
count new counter value to set

Returns

None.

Example

uint16_t count = 0x100;
TCC0_CompareInitialize();
TCC0_CompareStart();
TCC0_Compare16bitCounterSet(count);

Remarks

The caller must know the number of significant bytes of timer. Counter value is right-aligned.