![]() |
MAX78002 Peripheral Driver API
Peripheral Driver API for the MAX78002
|
Modules | |
WUT_Registers | |
Data Structures | |
struct | mxc_wut_cfg_t |
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) |
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. |
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. |