mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 04:52:59 +01:00
ztimer: deprecate ztimer_now64 and ztimer_now_t
This commit is contained in:
parent
b1715feb03
commit
3680198619
@ -3,3 +3,4 @@
|
||||
DEPRECATED_MODULES += event_thread_lowest
|
||||
DEPRECATED_MODULES += gnrc_netdev_default
|
||||
DEPRECATED_MODULES += sema_deprecated
|
||||
DEPRECATED_MODULES += ztimer_now64
|
||||
|
@ -302,9 +302,11 @@ struct ztimer_base {
|
||||
};
|
||||
|
||||
#if MODULE_ZTIMER_NOW64
|
||||
typedef uint64_t ztimer_now_t; /**< type for ztimer_now() result */
|
||||
typedef uint64_t ztimer_now_t; /**< type for ztimer_now() result
|
||||
* @deprecated use uint32_t or ztimer64 */
|
||||
#else
|
||||
typedef uint32_t ztimer_now_t; /**< type for ztimer_now() result */
|
||||
typedef uint32_t ztimer_now_t; /**< type for ztimer_now() result
|
||||
* @deprecated use uint32_t or ztimer64 */
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user