Go to the documentation of this file.
35 #ifdef MODULE_CORE_MSG
42 #ifdef MODULE_ZTIMER_XTIMER_COMPAT
47 #ifndef MODULE_XTIMER_ON_ZTIMER
48 #include "periph_conf.h"
435 #if defined(MODULE_CORE_THREAD_FLAGS) || defined(DOXYGEN)
469 #if defined(MODULE_CORE_MSG) || defined(DOXYGEN)
533 #ifndef XTIMER_BACKOFF
534 #define XTIMER_BACKOFF 30
537 #ifndef XTIMER_ISR_BACKOFF
546 #define XTIMER_ISR_BACKOFF 20
556 #define XTIMER_DEV TIMER_DEV(0)
560 #define XTIMER_CHAN (0)
562 #if (TIMER_0_MAX_VALUE) == 0xfffffful
563 #define XTIMER_WIDTH (24)
564 #elif (TIMER_0_MAX_VALUE) == 0xffff
565 #define XTIMER_WIDTH (16)
577 #define XTIMER_WIDTH (32)
580 #if (XTIMER_WIDTH != 32) || DOXYGEN
590 #define XTIMER_MASK ((0xffffffff >> XTIMER_WIDTH) << XTIMER_WIDTH)
592 #define XTIMER_MASK (0)
598 #define XTIMER_HZ_BASE (1000000ul)
600 #if !defined(XTIMER_HZ) && !defined(MODULE_XTIMER_ON_ZTIMER)
604 #define XTIMER_HZ XTIMER_HZ_BASE
607 #if !defined(XTIMER_SHIFT) && !defined(MODULE_XTIMER_ON_ZTIMER)
608 #if (XTIMER_HZ == 32768ul)
611 #define XTIMER_SHIFT (0)
612 #elif (XTIMER_HZ == XTIMER_HZ_BASE)
628 #define XTIMER_SHIFT (0)
629 #elif (XTIMER_HZ >> 1 == XTIMER_HZ_BASE) || (XTIMER_HZ << 1 == XTIMER_HZ_BASE)
630 #define XTIMER_SHIFT (1)
631 #elif (XTIMER_HZ >> 2 == XTIMER_HZ_BASE) || (XTIMER_HZ << 2 == XTIMER_HZ_BASE)
632 #define XTIMER_SHIFT (2)
633 #elif (XTIMER_HZ >> 3 == XTIMER_HZ_BASE) || (XTIMER_HZ << 3 == XTIMER_HZ_BASE)
634 #define XTIMER_SHIFT (3)
635 #elif (XTIMER_HZ >> 4 == XTIMER_HZ_BASE) || (XTIMER_HZ << 4 == XTIMER_HZ_BASE)
636 #define XTIMER_SHIFT (4)
637 #elif (XTIMER_HZ >> 5 == XTIMER_HZ_BASE) || (XTIMER_HZ << 5 == XTIMER_HZ_BASE)
638 #define XTIMER_SHIFT (5)
639 #elif (XTIMER_HZ >> 6 == XTIMER_HZ_BASE) || (XTIMER_HZ << 6 == XTIMER_HZ_BASE)
640 #define XTIMER_SHIFT (6)
642 #error "XTIMER_SHIFT cannot be derived for given XTIMER_HZ, verify settings!"
644 #elif !defined(MODULE_XTIMER_ON_ZTIMER)
645 #error "XTIMER_SHIFT is set relative to XTIMER_HZ, no manual define required!"
int16_t kernel_pid_t
Unique process identifier.
struct xtimer xtimer_t
xtimer timer structure
void * arg
argument to pass to callback function
static void xtimer_periodic_wakeup(xtimer_ticks32_t *last_wakeup, uint32_t period)
will cause the calling thread to be suspended until the absolute time (last_wakeup + period).
xtimer tick <-> seconds conversions for different values of XTIMER_HZ
static bool xtimer_less(xtimer_ticks32_t a, xtimer_ticks32_t b)
Compare two xtimer time stamps.
void xtimer_now_timex(timex_t *out)
get the current system time into a timex_t
static void xtimer_usleep64(uint64_t microseconds)
Pause the execution of a thread for some microseconds.
void xtimer_init(void)
xtimer initialization function
static int xtimer_msg_receive_timeout64(msg_t *msg, uint64_t timeout)
receive a message blocking but with timeout, 64bit version
static xtimer_ticks64_t xtimer_ticks64(uint64_t ticks)
Create an xtimer time stamp, 64 bit version.
uint32_t ticks32
Tick count.
static xtimer_ticks64_t xtimer_now64(void)
get the current system time as 64bit time stamp
static void xtimer_set_wakeup64(xtimer_t *timer, uint64_t offset, kernel_pid_t pid)
Set a timer that wakes up a thread, 64bit version.
void(* xtimer_callback_t)(void *)
xtimer callback type
uint64_t xtimer_left_usec(const xtimer_t *timer)
Get remaining time of timer.
static xtimer_ticks32_t xtimer_now(void)
get the current system time as 32bit time stamp value
static uint32_t xtimer_now_usec(void)
get the current system time in microseconds since start
static void xtimer_msleep(uint32_t milliseconds)
Pause the execution of a thread for some milliseconds.
Messaging API for inter process communication.
Scheduler API definition.
static void xtimer_set_msg64(xtimer_t *timer, uint64_t offset, msg_t *msg, kernel_pid_t target_pid)
Set a timer that sends a message, 64bit version.
static xtimer_ticks32_t xtimer_diff32_64(xtimer_ticks64_t a, xtimer_ticks64_t b)
Compute 32 bit difference between two 64 bit xtimer time stamps.
static void xtimer_tsleep32(xtimer_ticks32_t ticks)
Stop execution of a thread for some time, 32bit version.
int xtimer_rmutex_lock_timeout(rmutex_t *rmutex, uint64_t us)
lock a rmutex but with timeout
static xtimer_ticks32_t xtimer_ticks_from_usec(uint32_t usec)
Convert microseconds to xtimer ticks.
static xtimer_ticks64_t xtimer_ticks_from_usec64(uint64_t usec)
Convert microseconds to xtimer ticks, 64 bit version.
static xtimer_ticks64_t xtimer_diff64(xtimer_ticks64_t a, xtimer_ticks64_t b)
Compute difference between two xtimer time stamps, 64 bit version.
Utility library for comparing and computing timestamps.
uint32_t long_start_time
upper 32bit absolute start time
static void xtimer_set(xtimer_t *timer, uint32_t offset)
Set a timer to execute a callback at some time in the future.
ztimer xtimer wrapper interface
static xtimer_ticks32_t xtimer_diff(xtimer_ticks32_t a, xtimer_ticks32_t b)
Compute difference between two xtimer time stamps.
static void xtimer_usleep(uint32_t microseconds)
Pause the execution of a thread for some microseconds.
uint64_t ticks64
Tick count.
static xtimer_ticks32_t xtimer_ticks(uint32_t ticks)
Create an xtimer time stamp.
static bool xtimer_less64(xtimer_ticks64_t a, xtimer_ticks64_t b)
Compare two xtimer time stamps, 64 bit version.
int xtimer_mutex_lock_timeout(mutex_t *mutex, uint64_t us)
lock a mutex but with timeout
static void xtimer_set_msg(xtimer_t *timer, uint32_t offset, msg_t *msg, kernel_pid_t target_pid)
Set a timer that sends a message.
uint32_t start_time
lower 32bit absolute start time
static int xtimer_msg_receive_timeout(msg_t *msg, uint32_t timeout)
receive a message blocking but with timeout
void xtimer_set_timeout_flag(xtimer_t *t, uint32_t timeout)
Set timeout thread flag after timeout.
Recursive Mutex for thread synchronization.
static void xtimer_tsleep64(xtimer_ticks64_t ticks)
Stop execution of a thread for some time, 64bit version.
xtimer timestamp (32 bit)
static void xtimer_nanosleep(uint32_t nanoseconds)
Stop execution of a thread for some time.
Mutex for thread synchronization.
xtimer timestamp (64 bit)
xtimer_callback_t callback
callback function to call when timer expires
static uint32_t xtimer_usec_from_ticks(xtimer_ticks32_t ticks)
Convert xtimer ticks to microseconds.
static void xtimer_set_wakeup(xtimer_t *timer, uint32_t offset, kernel_pid_t pid)
Set a timer that wakes up a thread.
struct xtimer * next
reference to next timer in timer lists
static void xtimer_set64(xtimer_t *timer, uint64_t offset_us)
Set a timer to execute a callback at some time in the future, 64bit version.
static void xtimer_sleep(uint32_t seconds)
Pause the execution of a thread for some seconds.
uint32_t offset
lower 32bit offset time
Describes a message object which can be sent between threads.
static uint64_t xtimer_usec_from_ticks64(xtimer_ticks64_t ticks)
Convert xtimer ticks to microseconds, 64 bit version.
static void xtimer_spin(xtimer_ticks32_t ticks)
Stop execution of a thread for some time, blocking.
static uint64_t xtimer_now_usec64(void)
get the current system time in microseconds since start
void xtimer_remove(xtimer_t *timer)
remove a timer
void xtimer_set_timeout_flag64(xtimer_t *t, uint64_t timeout)
Set timeout thread flag after timeout.
uint32_t long_offset
upper 32bit offset time