Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

COTmrService

Description

This function updates the timer states. The function is used to generate a periodic time base and must be called cyclic.

Prototype

CPU_INT16S COTmrService(CO_TMR *tmr);

ParameterDescription
tmr Pointer to timer structure

Returned Value

=0     no timer is elapsed

>0     at least one timer is elapsed

<0     an error is detected

Example

The following interrupt service function generates the time base for the CANopen timed actions with periodic calls of the function COTmrService(). When using a RTOS, the return value may be used to decide of triggering a separate timer task to process the elapsed events.

Note: The configuration setting CO_TMR_TICKS_PER.SEC is assumed to be 1000, e.g. 1 tick is equal to 1ms. Therefore the hardware timer must be setup to generate an interrupt every 1ms. See CANopen Config Manual for details.

  • No labels