1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18105 from kfessel/p-deprecate-ztimer-now64-2

ztimer: add module removal information to doxygen and date it
This commit is contained in:
Martine Lenders 2022-05-25 18:54:09 +02:00 committed by GitHub
commit 2d67eaf7ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -301,12 +301,26 @@ struct ztimer_base {
uint32_t offset; /**< offset from last timer in list */
};
/**
* @defgroup sys_ztimer_now64 ztimer_now64
* @brief 64-bit timestamp support
*
* @deprecated use @ref ztimer_now() returning uint32_t or alternatively use
* module `ztimer64` with @ref ztimer64_now() returning uint64_t.
* Will be removed after 2022.10 release.
*/
/**
* @typedef ztimer_now_t
* @brief type for ztimer_now() result
*
* @deprecated use @ref ztimer_now() returning uint32_t or alternatively use
* module `ztimer64` with @ref ztimer64_now() returning uint64_t.
* Will be removed after 2022.10 release.
*/
#if MODULE_ZTIMER_NOW64
typedef uint64_t ztimer_now_t; /**< type for ztimer_now() result
* @deprecated use uint32_t or ztimer64 */
typedef uint64_t ztimer_now_t;
#else
typedef uint32_t ztimer_now_t; /**< type for ztimer_now() result
* @deprecated use uint32_t or ztimer64 */
typedef uint32_t ztimer_now_t;
#endif
/**