Asynchronous delay routines based on the SysTick Timer.
◆ MXC_DELAY_MSEC
#define MXC_DELAY_MSEC |
( |
|
ms | ) |
(ms * 1000UL) |
Macro used to specify a microsecond timing parameter in milliseconds.
◆ MXC_DELAY_SEC
#define MXC_DELAY_SEC |
( |
|
s | ) |
(((uint32_t)s) * 1000000UL) |
Macro used to specify a microsecond timing parameter in seconds.
◆ MXC_DELAY_USEC
#define MXC_DELAY_USEC |
( |
|
us | ) |
(us) |
Macro used to specify a microsecond timing parameter.
◆ mxc_delay_complete_t
typedef void(* mxc_delay_complete_t) (int result) |
The callback routine used by MXC_DelayAsync() when the delay is complete or aborted early.
- Parameters
-
◆ MXC_Delay()
int MXC_Delay |
( |
uint32_t |
us | ) |
|
Blocks and delays for the specified number of microseconds.
Uses the SysTick to create the requested delay. If the SysTick is running, the current settings will be used. If the SysTick is not running, it will be started.
- Parameters
-
- Returns
- E_NO_ERROR if no errors, error if unsuccessful.
◆ MXC_DelayAbort()
void MXC_DelayAbort |
( |
void |
| ) |
|
Stops an asynchronous delay previously started.
- Precondition
- Start the asynchronous delay by calling MXC_Delay_start().
◆ MXC_DelayAsync()
Starts a non-blocking delay for the specified number of microseconds.
Uses the SysTick to time the requested delay. If the SysTick is running, the current settings will be used. If the SysTick is not running, it will be started.
- Note
- MXC_Delay_handler() must be called from the SysTick interrupt service routine or at a rate greater than the SysTick overflow rate.
- Parameters
-
us | microseconds to delay |
callback | callback function to check for any error |
- Returns
- E_NO_ERROR if no errors, E_BUSY if currently servicing another delay request.
◆ MXC_DelayCheck()
int MXC_DelayCheck |
( |
void |
| ) |
|
Returns the status of a non-blocking delay request.
- Precondition
- Start the asynchronous delay by calling MXC_Delay_start().
- Returns
- E_BUSY until the requested delay time has expired.
◆ MXC_DelayHandler()
void MXC_DelayHandler |
( |
void |
| ) |
|
Processes the delay interrupt.
This function must be called from the SysTick IRQ or polled at a rate greater than the SysTick overflow rate.