![]() |
MAX32680 Peripheral Driver API
Peripheral Driver API for the MAX32680
|
Modules | |
WUT_Registers | |
Data Structures | |
struct | mxc_wut_cfg_t |
Typedefs | |
typedef void(* | mxc_wut_complete_cb_t) (int result) |
Enumerations | |
enum | mxc_wut_pres_t |
enum | mxc_wut_mode_t |
enum | mxc_wut_unit_t |
typedef void(* mxc_wut_complete_cb_t) (int result) |
The callback routine used by the MXC_WUT_TrimCrystalAsync() function to indicate the transaction has completed.
result | Error code. |
enum mxc_wut_mode_t |
Wakeup Timer modes.
enum mxc_wut_pres_t |
Wakeup Timer prescaler values.
enum mxc_wut_unit_t |
void MXC_WUT_Config | ( | mxc_wut_regs_t * | wut, |
const mxc_wut_cfg_t * | cfg | ||
) |
Configure the timer.
wut | Pointer to Wakeup Timer instance to configure. |
cfg | Pointer to timer configuration struct. |
void MXC_WUT_Delay_MS | ( | mxc_wut_regs_t * | wut, |
uint32_t | waitMs | ||
) |
Delays for the given number of milliseconds.
wut | Pointer to Wakeup Timer instance to use as the delay timer. |
waitMs | Number of milliseconds to wait. |
void MXC_WUT_Disable | ( | mxc_wut_regs_t * | wut | ) |
Disable the timer.
wut | Pointer to Wakeup Timer instance to disable. |
void MXC_WUT_Edge | ( | mxc_wut_regs_t * | wut | ) |
Wait for an edge of the WUT count register.
wut | Pointer to Wakeup Timer instance to wait on. |
void MXC_WUT_Enable | ( | mxc_wut_regs_t * | wut | ) |
Enable the timer.
wut | Pointer to Wakeup Timer instance to enable. |
uint32_t MXC_WUT_GetCompare | ( | mxc_wut_regs_t * | wut | ) |
Get the timer compare count.
wut | Pointer to Wakeup Timer instance to get compare value from. |
uint32_t MXC_WUT_GetCount | ( | mxc_wut_regs_t * | wut | ) |
Get the timer count.
wut | Pointer to Wakeup Timer instance to get count value from. |
uint32_t MXC_WUT_GetSleepTicks | ( | mxc_wut_regs_t * | wut | ) |
Get the difference between the stored counter value and the current counter value.
wut | Pointer to Wakeup Timer instance to get current sleep ticks from. |
int MXC_WUT_GetTicks | ( | mxc_wut_regs_t * | wut, |
uint32_t | time, | ||
mxc_wut_unit_t | units, | ||
uint32_t * | ticks | ||
) |
Convert real time to timer ticks.
wut | Pointer to Wakeup Timer instance to get tick count from. |
time | Number of units of time. |
units | Which units of time you want to convert. |
ticks | Pointer to store the number of ticks calculated. |
int MXC_WUT_GetTime | ( | mxc_wut_regs_t * | wut, |
uint32_t | ticks, | ||
uint32_t * | time, | ||
mxc_wut_unit_t * | units | ||
) |
Convert timer ticks to real time.
wut | Pointer to Wakeup Timer instance to get time from. |
ticks | Number of ticks. |
time | Pointer to store number of units of time. |
units | Pointer to store the units that time represents. |
int MXC_WUT_Handler | ( | mxc_wut_regs_t * | wut | ) |
Interrupt handler for trim procedure.
wut | Pointer to Wakeup Timer instance to handle interrupts for. |
void MXC_WUT_Init | ( | mxc_wut_regs_t * | wut, |
mxc_wut_pres_t | pres | ||
) |
Initialize timer module clock.
wut | Pointer to Wakeup Timer instance to initialize. |
pres | Prescaler value. |
void MXC_WUT_IntClear | ( | mxc_wut_regs_t * | wut | ) |
Clear the timer interrupt.
wut | Pointer to Wakeup Timer instance to clear interrupts for. |
uint32_t MXC_WUT_IntStatus | ( | mxc_wut_regs_t * | wut | ) |
Get the timer interrupt status.
wut | Pointer to Wakeup Timer instance to get interrupt status from. |
void MXC_WUT_RestoreBBClock | ( | mxc_wut_regs_t * | wut, |
uint32_t | dbbFreq | ||
) |
Restore the DBB clock with the stored count and snapshot values.
wut | Pointer to Wakeup Timer instance to restore count and snapshot values for. |
dbbFreq | Frequency of DBB clock. |
void MXC_WUT_SetCompare | ( | mxc_wut_regs_t * | wut, |
uint32_t | cmp_cnt | ||
) |
Set the timer compare count.
wut | Pointer to Wakeup Timer instance to set compare value for. |
cmp_cnt | New compare count. |
void MXC_WUT_SetCount | ( | mxc_wut_regs_t * | wut, |
uint32_t | cnt | ||
) |
Set the timer count.
wut | Pointer to Wakeup Timer instance to set count valeu for. |
cnt | New count. |
void MXC_WUT_Shutdown | ( | mxc_wut_regs_t * | wut | ) |
Shutdown timer module clock.
wut | Pointer to Wakeup Timer instance to shutdown. |
void MXC_WUT_Store | ( | mxc_wut_regs_t * | wut | ) |
Store the count and snapshot values.
wut | Pointer to Wakeup Timer instance to store count and snapshot values for. |
int MXC_WUT_TrimCrystal | ( | mxc_wut_regs_t * | wut | ) |
Trim the 32 kHz crystal load settings, blocks until complete.
This procedure uses the WUT and the BLE DBB, driven by the 32 MHz crystal, to trim the load settings of the 32 kHz crystal. This procedure will only work if the BLE DBB is initialized and running.
wut | Pointer to Wakeup Timer instance to trim. |
int MXC_WUT_TrimCrystalAsync | ( | mxc_wut_regs_t * | wut, |
mxc_wut_complete_cb_t | cb | ||
) |
Trim the 32 kHz crystal load settings, non-blocking interrupt based.
This procedure uses the WUT and the BLE DBB, driven by the 32 MHz crystal, to trim the load settings of the 32 kHz crystal. This procedure will only work if the BLE DBB is initialized and running.
wut | Pointer to Wakeup Timer instance to trim. |
cb | Callback for when the trim is complete. |
int MXC_WUT_TrimPending | ( | mxc_wut_regs_t * | wut | ) |
Check to see if the trim procedure is ongoing.
Must leave the 32 MHz clock and BLE DBB running while the trim procedure is pending.
wut | Pointer to Wakeup Timer instance to check trim status for. |