System Timing
Functionality related to the RAIL timer and general system time.
Data Structures |
|
struct | RAIL_MultiTimer_t |
RAIL timer state structure.
|
|
struct | RAIL_PacketTimeStamp_t |
Information for calculating and representing a packet timestamp.
|
Typedefs |
|
typedef uint32_t | RAIL_Time_t |
Time in microseconds.
|
|
typedef void(* | RAIL_TimerCallback_t ) ( RAIL_Handle_t cbArg) |
A pointer to the callback called when the RAIL timer expires.
|
|
typedef void(* | RAIL_MultiTimerCallback_t ) (struct RAIL_MultiTimer *tmr, RAIL_Time_t expectedTimeOfEvent, void *cbArg) |
Callback fired when timer expires.
|
Enumerations |
|
enum |
RAIL_TimeMode_t
{
RAIL_TIME_ABSOLUTE , RAIL_TIME_DELAY , RAIL_TIME_DISABLED } |
Specify a time offset in RAIL APIs.
|
|
enum |
RAIL_PacketTimePosition_t
{
RAIL_PACKET_TIME_INVALID = 0, RAIL_PACKET_TIME_DEFAULT = 1, RAIL_PACKET_TIME_AT_PREAMBLE_START = 2, RAIL_PACKET_TIME_AT_PREAMBLE_START_USED_TOTAL = 3, RAIL_PACKET_TIME_AT_SYNC_END = 4, RAIL_PACKET_TIME_AT_SYNC_END_USED_TOTAL = 5, RAIL_PACKET_TIME_AT_PACKET_END = 6, RAIL_PACKET_TIME_AT_PACKET_END_USED_TOTAL = 7, RAIL_PACKET_TIME_COUNT } |
The available packet timestamp position choices.
|
Functions |
|
RAIL_Time_t | RAIL_GetTime (void) |
Get the current RAIL time.
|
|
RAIL_Status_t | RAIL_SetTime ( RAIL_Time_t time) |
Set the current RAIL time.
|
|
RAIL_Status_t | RAIL_SetTimer ( RAIL_Handle_t railHandle, RAIL_Time_t time, RAIL_TimeMode_t mode, RAIL_TimerCallback_t cb) |
Schedule a timer to expire using the RAIL timebase.
|
|
RAIL_Time_t | RAIL_GetTimer ( RAIL_Handle_t railHandle) |
Return the absolute time that the RAIL timer was configured to expire.
|
|
void | RAIL_CancelTimer ( RAIL_Handle_t railHandle) |
Stop the currently scheduled RAIL timer.
|
|
bool | RAIL_IsTimerExpired ( RAIL_Handle_t railHandle) |
Check whether the RAIL timer has expired.
|
|
bool | RAIL_IsTimerRunning ( RAIL_Handle_t railHandle) |
Check whether the RAIL timer is currently running.
|
|
bool | RAIL_ConfigMultiTimer (bool enable) |
Configure the RAIL software timer feature.
|
|
RAIL_Status_t | RAIL_SetMultiTimer ( RAIL_MultiTimer_t *tmr, RAIL_Time_t expirationTime, RAIL_TimeMode_t expirationMode, RAIL_MultiTimerCallback_t callback, void *cbArg) |
Start a multitimer instance.
|
|
bool | RAIL_CancelMultiTimer ( RAIL_MultiTimer_t *tmr) |
Stop the currently scheduled RAIL multitimer.
|
|
bool | RAIL_IsMultiTimerRunning ( RAIL_MultiTimer_t *tmr) |
Check if a given timer is running.
|
|
bool | RAIL_IsMultiTimerExpired ( RAIL_MultiTimer_t *tmr) |
Check if a given timer has expired.
|
|
RAIL_Time_t | RAIL_GetMultiTimer ( RAIL_MultiTimer_t *tmr, RAIL_TimeMode_t timeMode) |
Get time left before a given timer instance expires.
|
Detailed Description
Functionality related to the RAIL timer and general system time.
These functions can be used to get information about the current system time or to manipulate the RAIL timer.
The system time returned by
RAIL_GetTime()
is in the same timebase that is used throughout RAIL. Any callbacks or structures that provide a timestamp, such as
RAIL_RxPacketDetails_t::timeReceived
, will use the same timebase as will any APIs that accept an absolute time for scheduling their action. Throughout the documentation, the timebase is referred to as the RAIL timebase. The timebase is currently a value in microseconds from
RAIL_Init()
time, which means that it will wrap every 1.19 hours. (
(2^32 - 1) / (3600 sec/hr * 1000000 us/sec)
).
The provided timer is hardware-backed and interrupt-driven. It can be used for timing any event in the system, but is especially helpful for timing protocol-based state machines and other systems that interact with the radio. To avoid processing the expiration in interrupt context, leave the cb parameter passed to RAIL_SetTimer() as NULL and poll for expiration with the RAIL_IsTimerExpired() function. See below for an example of the interrupt driven method of interacting with the timer.
If multiple software timers are needed to be run off of the one available hardware timer you can enable a software multiplexing layer within RAIL using the RAIL_ConfigMultiTimer() function. This will allow you to setup as many timers as you want using the RAIL_*MultiTimer() functions. See the example below for using the multitimer functionality.
Typedef Documentation
◆ RAIL_MultiTimerCallback_t
RAIL_MultiTimerCallback_t |
Callback fired when timer expires.
- Parameters
-
[in] tmr
A pointer to an expired timer. [in] expectedTimeOfEvent
An absolute time event fired. [in] cbArg
A user-supplied callback argument.
Definition at line
214
of file
rail_types.h
.
◆ RAIL_TimerCallback_t
typedef void(* RAIL_TimerCallback_t) ( RAIL_Handle_t cbArg) |
A pointer to the callback called when the RAIL timer expires.
- Parameters
-
[in] cbArg
The argument passed to the callback.
Definition at line
157
of file
rail_types.h
.
Enumeration Type Documentation
◆ RAIL_PacketTimePosition_t
The available packet timestamp position choices.
Enumerator | |
---|---|
RAIL_PACKET_TIME_INVALID |
Indicate that a timestamp is not to be or was not provided. It is useful if the application doesn't care about packet timestamps and doesn't want RAIL to spend time calculating one. |
RAIL_PACKET_TIME_DEFAULT |
Request the choice most expedient for RAIL to calculate, which may depend on the radio and/or its configuration. The actual choice would always be reflected in the timePosition field of RAIL_RxPacketDetails_t or RAIL_TxPacketDetails_t returned and would never be one of the _USED_TOTAL values. |
RAIL_PACKET_TIME_AT_PREAMBLE_START |
Request the timestamp corresponding to the first preamble bit sent or received. Indicate that timestamp did not require using totalPacketBytes. |
RAIL_PACKET_TIME_AT_PREAMBLE_START_USED_TOTAL |
Request the timestamp corresponding to the first preamble bit sent or received. Indicate that timestamp did require using totalPacketBytes. |
RAIL_PACKET_TIME_AT_SYNC_END |
Request the timestamp corresponding to right after its last SYNC word bit has been sent or received. Indicate that timestamp did not require using totalPacketBytes. |
RAIL_PACKET_TIME_AT_SYNC_END_USED_TOTAL |
Request the timestamp corresponding to right after its last SYNC word bit has been sent or received. Indicate that timestamp did require using totalPacketBytes. |
RAIL_PACKET_TIME_AT_PACKET_END |
Request the timestamp corresponding to right after its last bit has been sent or received. Indicate that timestamp did not require using totalPacketBytes. |
RAIL_PACKET_TIME_AT_PACKET_END_USED_TOTAL |
Request the timestamp corresponding to right after its last bit has been sent or received. Indicate that timestamp did require using totalPacketBytes. |
RAIL_PACKET_TIME_COUNT |
A count of the choices in this enumeration. |
Definition at line
240
of file
rail_types.h
.
◆ RAIL_TimeMode_t
enum RAIL_TimeMode_t |
Specify a time offset in RAIL APIs.
Different APIs use the same constants and may provide more specifics about how they're used but the general use for each is described below.
Enumerator | |
---|---|
RAIL_TIME_ABSOLUTE |
The time specified is an exact time in the RAIL timebase. The given event should happen at exactly that time. If this time is already in the past, an error is returned. Because the RAIL timebase wraps at 32 bits, there is no real 'past'. Instead, any event greater than 3/4 of the way into the future is considered to be in the past. |
RAIL_TIME_DELAY |
The time specified is relative to the current time. The event should occur that many ticks in the future. Delays are only guaranteed at least as long as the value specified. An overhead may occur between the time when the API is called and when the delay starts. As a result, using this for operations that must happen at an exact given time is not recommended. For that, you must use RAIL_TIME_ABSOLUTE delays. Note that, if you specify a delay 0, that event is triggered as soon as possible. This is different than specifying an absolute time of now which would return an error unless it was possible. |
RAIL_TIME_DISABLED |
The specified time is invalid and should be ignored. For some APIs this can also indicate that any previously stored delay should be invalidated and disabled. |
Definition at line
166
of file
rail_types.h
.
Function Documentation
◆ RAIL_CancelMultiTimer()
bool RAIL_CancelMultiTimer | ( | RAIL_MultiTimer_t * |
tmr
|
) |
Stop the currently scheduled RAIL multitimer.
- Parameters
-
[in,out] tmr
A RAIL timer instance handle.
- Returns
- true if the timer was successfully canceled. false if the timer was not running.
Cancels the timer. If this function is called before the timer expires, the cb callback specified in the earlier RAIL_SetTimer() call will never be called.
◆ RAIL_CancelTimer()
void RAIL_CancelTimer | ( | RAIL_Handle_t |
railHandle
|
) |
Stop the currently scheduled RAIL timer.
- Parameters
-
[in] railHandle
A RAIL instance handle. Cancels the timer. If this function is called before the timer expires, the cb callback specified in the earlier RAIL_SetTimer() call will never be called.
◆ RAIL_ConfigMultiTimer()
bool RAIL_ConfigMultiTimer | ( | bool |
enable
|
) |
Configure the RAIL software timer feature.
- Parameters
-
[in] enable
Enables/disables the RAIL multitimer.
- Returns
- True if the multitimer was successfully enabled/disabled, false otherwise.
Turning this on will add a software timer layer above the physical RAIL timer so that the user can have as many timers as desired. It is not necessary to call this function if the MultiTimer APIs are not used.
- Note
- This function must be called before calling RAIL_SetMultiTimer . This function is a no-op on multiprotocol as this layer is already used under the hood. It should not be called while the RAIL timer is running. Call RAIL_IsTimerRunning before enabling/disabling the multitimer. If the multitimer is not needed, do not call this function to allow the multitimer code to be dead stripped. If the multitimer is enabled for use, the multitimer and timer APIs can both be used. However, no timer can be in use while this function is being called.
◆ RAIL_GetMultiTimer()
RAIL_Time_t RAIL_GetMultiTimer | ( | RAIL_MultiTimer_t * |
tmr,
|
RAIL_TimeMode_t |
timeMode
|
||
) |
Get time left before a given timer instance expires.
- Parameters
-
[in] tmr
A pointer to the timer structure to query. [in] timeMode
Indicates how the function provides the time remaining. By choosing RAIL_TimeMode_t::RAIL_TIME_ABSOLUTE , the function returns the absolute expiration time, and by choosing RAIL_TimeMode_t::RAIL_TIME_DELAY , the function returns the amount of time remaining before the timer's expiration.
- Returns
- Time left expressed in RAIL's time units. 0 if the soft timer is not running or has already expired.
◆ RAIL_GetTime()
RAIL_Time_t RAIL_GetTime | ( | void |
|
) |
Get the current RAIL time.
- Returns
- Returns the RAIL timebase in microseconds. Note that this wraps after about 1.19 hours since it's stored in a 32 bit value.
Returns the current time in the RAIL timebase (microseconds). It can be used to compare with packet timestamps or to schedule transmits.
◆ RAIL_GetTimer()
RAIL_Time_t RAIL_GetTimer | ( | RAIL_Handle_t |
railHandle
|
) |
Return the absolute time that the RAIL timer was configured to expire.
- Parameters
-
[in] railHandle
A RAIL instance handle.
- Returns
- The absolute time that this timer was set to expire.
Provides the absolute time regardless of the RAIL_TimeMode_t that was passed into RAIL_SetTimer . Note that the time might be in the past if the timer has already expired. The return value is undefined if the timer was never set.
◆ RAIL_IsMultiTimerExpired()
bool RAIL_IsMultiTimerExpired | ( | RAIL_MultiTimer_t * |
tmr
|
) |
Check if a given timer has expired.
- Parameters
-
[in] tmr
A pointer to the timer structure to query.
- Returns
- true if the timer is expired. false if the timer is running.
◆ RAIL_IsMultiTimerRunning()
bool RAIL_IsMultiTimerRunning | ( | RAIL_MultiTimer_t * |
tmr
|
) |
Check if a given timer is running.
- Parameters
-
[in] tmr
A pointer to the timer structure to query.
- Returns
- true if the timer is running. false if the timer is not running.
◆ RAIL_IsTimerExpired()
bool RAIL_IsTimerExpired | ( | RAIL_Handle_t |
railHandle
|
) |
Check whether the RAIL timer has expired.
- Parameters
-
[in] railHandle
A RAIL instance handle.
- Returns
- True if the previously scheduled timer has expired and false otherwise.
Polling with this function is an alternative to the callback.
◆ RAIL_IsTimerRunning()
bool RAIL_IsTimerRunning | ( | RAIL_Handle_t |
railHandle
|
) |
Check whether the RAIL timer is currently running.
- Parameters
-
[in] railHandle
A RAIL instance handle.
- Returns
- Returns true if the timer is running and false if the timer has expired or was never set.
◆ RAIL_SetMultiTimer()
RAIL_Status_t RAIL_SetMultiTimer | ( | RAIL_MultiTimer_t * |
tmr,
|
RAIL_Time_t |
expirationTime,
|
||
RAIL_TimeMode_t |
expirationMode,
|
||
RAIL_MultiTimerCallback_t |
callback,
|
||
void * |
cbArg
|
||
) |
Start a multitimer instance.
- Note
- It is legal to start an already running timer. If this is done, the timer will first be stopped before the new configuration is applied. If expirationTime is 0, the callback is called immediately.
- Parameters
-
[in,out] tmr
A pointer to the timer instance to start. [in] expirationTime
A time when the timer is set to expire. [in] expirationMode
Select mode of expirationTime. See RAIL_TimeMode_t . [in] callback
A function to call on timer expiry. See RAIL_MultiTimerCallback_t . NULL is a legal value. [in] cbArg
An extra callback function parameter for the user application.
- Returns
-
RAIL_STATUS_NO_ERROR
on success.
RAIL_STATUS_INVALID_PARAMETER if tmr has an illegal value or if timeout is in the past.
◆ RAIL_SetTime()
RAIL_Status_t RAIL_SetTime | ( | RAIL_Time_t |
time
|
) |
Set the current RAIL time.
- Parameters
-
[in] time
Set the RAIL timebase to this value in microseconds.
- Returns
- Status code indicating the success of the function call.
Sets the current time in the RAIL timebase in microseconds.
◆ RAIL_SetTimer()
RAIL_Status_t RAIL_SetTimer | ( | RAIL_Handle_t |
railHandle,
|
RAIL_Time_t |
time,
|
||
RAIL_TimeMode_t |
mode,
|
||
RAIL_TimerCallback_t |
cb
|
||
) |
Schedule a timer to expire using the RAIL timebase.
- Parameters
-
[in] railHandle
A RAIL instance handle. [in] time
The timer's expiration time in the RAIL timebase. [in] mode
Indicates whether the time argument is an absolute RAIL time or relative to the current RAIL time. Specifying mode RAIL_TIME_DISABLED is the same as calling RAIL_CancelTimer() . [in] cb
The callback for RAIL to call when the timer expires.
- Returns
- RAIL_STATUS_NO_ERROR on success and RAIL_STATUS_INVALID_PARAMETER if the timer can't be scheduled.
Configures a timer to expire after a period in the RAIL timebase. This timer can be used to implement low-level protocol features.
- Warning
- Attempting to schedule the timer when it is still running from a previous request is bad practice, unless the cb callback is identical to that used in the previous request, in which case the timer is rescheduled to the new time. Note that if the original timer expires as it is being rescheduled, the callback may or may not occur. It is generally good practice to cancel a running timer before rescheduling it to minimize ambiguity.