From e420c7ad9e88df8498e9c3b4212cae4392dd294b Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Thu, 2 Mar 2017 18:13:22 +0100 Subject: [PATCH] doc: xtimer: added missing documentation --- sys/include/xtimer.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/include/xtimer.h b/sys/include/xtimer.h index 8f12e5043..eab6301f2 100644 --- a/sys/include/xtimer.h +++ b/sys/include/xtimer.h @@ -47,7 +47,7 @@ extern "C" { * @note This is a struct in order to make the xtimer API type strict */ typedef struct { - uint64_t ticks64; + uint64_t ticks64; /**< Tick count */ } xtimer_ticks64_t; /** @@ -56,7 +56,7 @@ typedef struct { * @note This is a struct in order to make the xtimer API type strict */ typedef struct { - uint32_t ticks32; + uint32_t ticks32; /**< Tick count */ } xtimer_ticks32_t; /** @@ -68,12 +68,12 @@ typedef void (*xtimer_callback_t)(void*); * @brief xtimer timer structure */ typedef struct xtimer { - struct xtimer *next; /**< reference to next timer in timer lists */ - uint32_t target; /**< lower 32bit absolute target time */ - uint32_t long_target; /**< upper 32bit absolute target time */ + struct xtimer *next; /**< reference to next timer in timer lists */ + uint32_t target; /**< lower 32bit absolute target time */ + uint32_t long_target; /**< upper 32bit absolute target time */ xtimer_callback_t callback; /**< callback function to call when timer expires */ - void *arg; /**< argument to pass to callback function */ + void *arg; /**< argument to pass to callback function */ } xtimer_t; /**