tmrTimerControl::xTimerPeriodInTicks is only used within FreeRTOS.
 
Symbols
loading...
Files
loading...
CodeScopeSTM32 Libraries and SamplesFreeRTOStmrTimerControl::xTimerPeriodInTicks

tmrTimerControl::xTimerPeriodInTicks field

Syntax

TickType_t xTimerPeriodInTicks;

References

LocationReferrerText
timers.c:77
TickType_t xTimerPeriodInTicks;/*<< How quickly and often the timer expires. */
timers.c:368prvInitialiseNewTimer()
pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks;
timers.c:438xTimerGetPeriod()
return pxTimer->xTimerPeriodInTicks;
timers.c:524prvProcessExpiredTimer()
if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE )
timers.c:704prvInsertTimerInActiveList()
if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */
timers.c:802prvProcessReceivedCommands()
if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE )
timers.c:811prvProcessReceivedCommands()
xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY );
timers.c:835prvProcessReceivedCommands()
pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue;
timers.c:836prvProcessReceivedCommands()
configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) );
timers.c:844prvProcessReceivedCommands()
( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow );
timers.c:915prvSwitchTimerLists()
xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks );

Data Use

Functions writing tmrTimerControl::xTimerPeriodInTicks
Functions reading tmrTimerControl::xTimerPeriodInTicks
tmrTimerControl::xTimerPeriodInTicks
Type of tmrTimerControl::xTimerPeriodInTicks
tmrTimerControl::xTimerPeriodInTicks
all items filtered out