:orphan: .. index:: pair: group; Timer .. _doxid-group__te__tools__te__timer: Timer ===== .. toctree:: :hidden: struct_te_timer_t.rst Overview ~~~~~~~~ Functions to check if time expired .. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`te_timer_t` :ref:`te_timer_t`; // structs struct :ref:`te_timer_t`; // global functions :ref:`te_errno` :ref:`te_timer_start`(:ref:`te_timer_t`* timer, unsigned int timeout_s); :ref:`te_errno` :ref:`te_timer_restart`(:ref:`te_timer_t`* timer, unsigned int timeout_s); :ref:`te_errno` :ref:`te_timer_stop`(:ref:`te_timer_t`* timer); :ref:`te_errno` :ref:`te_timer_expired`(:ref:`te_timer_t`* timer); // macros #define :ref:`TE_TIMER_INIT` .. _details-group__te__tools__te__timer: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Functions to check if time expired .. _doxid-group__te__tools__te__timer_1te_tools_te_timer_example: Example of usage ~~~~~~~~~~~~~~~~ Let's assume we need to do some routine until certain time has expired .. ref-code-block:: cpp #include "te_timer.h" :ref:`te_timer_t ` timer = :ref:`TE_TIMER_INIT `; :ref:`te_errno ` rc; :ref:`CHECK_RC `(:ref:`te_timer_start `(&timer, 3)); do { :ref:`VSLEEP `(1, "repeat some routine until the timer expires"); } while ((rc = :ref:`te_timer_expired `(&timer)) == 0); :ref:`CHECK_RC `(:ref:`te_timer_stop `(&timer)); if (rc != :ref:`TE_ETIMEDOUT `) :ref:`CHECK_RC `(rc); Typedefs -------- .. index:: pair: typedef; te_timer_t .. _doxid-group__te__tools__te__timer_1gac0b1a74491b1cb6c13e2f6bb7564485f: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`te_timer_t` te_timer_t Timer context Global Functions ---------------- .. index:: pair: function; te_timer_start .. _doxid-group__te__tools__te__timer_1ga11010f8eb6945fa12089998ccfdcba39: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_timer_start(:ref:`te_timer_t`* timer, unsigned int timeout_s) Start timer .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - timer - Timer handle * - timeout_s - Timeout for triggering timer .. rubric:: Returns: Status code .. index:: pair: function; te_timer_restart .. _doxid-group__te__tools__te__timer_1ga1af397140eee92c9885a44ac86b315f3: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_timer_restart(:ref:`te_timer_t`* timer, unsigned int timeout_s) Restart already running or expired timer with a new timeout. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - timer - Timer handle. * - timeout_s - Timeout for triggering timer. .. rubric:: Returns: Status code. .. index:: pair: function; te_timer_stop .. _doxid-group__te__tools__te__timer_1gaf43339ede0ca95bada4cc8d2d9753211: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_timer_stop(:ref:`te_timer_t`* timer) Stop the timer and free its resources. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - timer - Timer handle. .. rubric:: Returns: Status code. .. index:: pair: function; te_timer_expired .. _doxid-group__te__tools__te__timer_1ga9574b418e00e17eff5c5cd830cf84ff2: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` te_timer_expired(:ref:`te_timer_t`* timer) Check whether timeout has expired or not. It does not stop the timer if it expires, so :ref:`te_timer_stop() ` should be called to free timer's resources. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - timer - Timer handle * - 0 - Time has not expired yet * - TE_ETIMEDOUT - Time has expired * - Others - Internal error, there is no way to use this timer any more .. rubric:: Returns: Status code Macros ------ .. index:: pair: define; TE_TIMER_INIT .. _doxid-group__te__tools__te__timer_1ga57a6c1dd46021d609f66e97827ecbf6a: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TE_TIMER_INIT On-stack timer context initializer