Skip to content

Commit

Permalink
ztimer: add module removal information to doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
kfessel committed May 13, 2022
1 parent 1e315c7 commit 85762d6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions sys/include/ztimer.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,12 +301,18 @@ struct ztimer_base {
uint32_t offset; /**< offset from last timer in list */
};

/**
* @defgroup ztimer_now64 using this module changes ztimer_now type, but not for long
* @deprecated use uint32_t or ztimer64, will be removed after 2022.07 release.
*/
#if MODULE_ZTIMER_NOW64
typedef uint64_t ztimer_now_t; /**< type for ztimer_now() result
* @deprecated use uint32_t or ztimer64 */
* @deprecated use uint32_t or ztimer64,
* will be removed after 2022.07 release. */
#else
typedef uint32_t ztimer_now_t; /**< type for ztimer_now() result
* @deprecated use uint32_t or ztimer64 */
* @deprecated use uint32_t or ztimer64,
* will be removed after 2022.07 release. */
#endif

/**
Expand Down

0 comments on commit 85762d6

Please sign in to comment.