![]() |
MAX32690 Peripheral Driver API
Peripheral Driver API for the MAX32690
|
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 |
Functions | |
void | MXC_WUT_Init (mxc_wut_pres_t pres) |
void | MXC_WUT_Shutdown (void) |
void | MXC_WUT_Enable (void) |
void | MXC_WUT_Disable (void) |
void | MXC_WUT_Config (const mxc_wut_cfg_t *cfg) |
uint32_t | MXC_WUT_GetCompare (void) |
uint32_t | MXC_WUT_GetCapture (void) |
uint32_t | MXC_WUT_GetCount (void) |
void | MXC_WUT_IntClear (void) |
uint32_t | MXC_WUT_IntStatus (void) |
void | MXC_WUT_SetCompare (uint32_t cmp_cnt) |
void | MXC_WUT_SetCount (uint32_t cnt) |
int | MXC_WUT_GetTicks (uint32_t time, mxc_wut_unit_t units, uint32_t *ticks) |
int | MXC_WUT_GetTime (uint32_t ticks, uint32_t *time, mxc_wut_unit_t *units) |
void | MXC_WUT_Edge (void) |
void | MXC_WUT_Store (void) |
void | MXC_WUT_RestoreBBClock (uint32_t dbbFreq) |
uint32_t | MXC_WUT_GetSleepTicks (void) |
void | MXC_WUT_Delay_MS (uint32_t waitMs) |
int | MXC_WUT_TrimCrystal (void) |
int | MXC_WUT_TrimCrystalAsync (mxc_wut_complete_cb_t cb) |
int | MXC_WUT_TrimPending (void) |
int | MXC_WUT_Handler (void) |
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 | ( | const mxc_wut_cfg_t * | cfg | ) |
Configure the timer.
cfg | Pointer to timer configuration struct. |
void MXC_WUT_Delay_MS | ( | uint32_t | waitMs | ) |
Delays for the given number of milliseconds.
waitMs | Number of milliseconds to wait. |
uint32_t MXC_WUT_GetCapture | ( | void | ) |
Get the timer capture count.
uint32_t MXC_WUT_GetCompare | ( | void | ) |
Get the timer compare count.
uint32_t MXC_WUT_GetCount | ( | void | ) |
Get the timer count.
uint32_t MXC_WUT_GetSleepTicks | ( | void | ) |
Get the difference between the stored counter value and the current counter value.
int MXC_WUT_GetTicks | ( | uint32_t | time, |
mxc_wut_unit_t | units, | ||
uint32_t * | ticks | ||
) |
Convert real time to timer ticks.
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 | ( | uint32_t | ticks, |
uint32_t * | time, | ||
mxc_wut_unit_t * | units | ||
) |
Convert timer ticks to real time.
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 | ( | void | ) |
Interrupt handler for trim procedure.
void MXC_WUT_Init | ( | mxc_wut_pres_t | pres | ) |
Initialize timer module clock.
pres | Prescaler value. |
uint32_t MXC_WUT_IntStatus | ( | void | ) |
Get the timer interrupt status.
void MXC_WUT_RestoreBBClock | ( | uint32_t | dbbFreq | ) |
Restore the DBB clock with the stored count and snapshot values.
dbbFreq | Frequency of DBB clock. |
void MXC_WUT_SetCompare | ( | uint32_t | cmp_cnt | ) |
Set the timer compare count.
cmp_cnt | New compare count. |
void MXC_WUT_SetCount | ( | uint32_t | cnt | ) |
Set the timer count.
cnt | New count. |
int MXC_WUT_TrimCrystal | ( | void | ) |
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.
int MXC_WUT_TrimCrystalAsync | ( | 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.
cb | Callback for when the trim is complete. |
int MXC_WUT_TrimPending | ( | void | ) |
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.