|
GPS Device
|
Functions | |
| ERR_te | systick_init (SYSTICK_CFG_ts const *systick_cfg) |
| Initializes and starts the SysTick timer. | |
| void | systick_deinit (void) |
| Deinitializes the SysTick timer. | |
| void | systick_get_def_cfg (SYSTICK_CFG_ts *systick_cfg_o) |
| Populates a configuration structure with the default SysTick settings. | |
| uint32_t | systick_get_ms (void) |
| Returns the number of milliseconds elapsed since SysTick was initialized. | |
| void | SysTick_Handler (void) |
| SysTick exception handler. Increments the millisecond counter on each 1 ms wrap. | |
| ERR_te systick_init | ( | SYSTICK_CFG_ts const * | systick_cfg | ) |
Initializes and starts the SysTick timer.
Definition at line 41 of file arm_cortex_m4_systick.c.


| void systick_deinit | ( | void | ) |
Deinitializes the SysTick timer.
Definition at line 84 of file arm_cortex_m4_systick.c.
| void systick_get_def_cfg | ( | SYSTICK_CFG_ts * | systick_cfg_o | ) |
Populates a configuration structure with the default SysTick settings.
Definition at line 102 of file arm_cortex_m4_systick.c.
| uint32_t systick_get_ms | ( | void | ) |
Returns the number of milliseconds elapsed since SysTick was initialized.
Definition at line 108 of file arm_cortex_m4_systick.c.

| void SysTick_Handler | ( | void | ) |
SysTick exception handler. Increments the millisecond counter on each 1 ms wrap.
Called automatically by the Cortex-M4 exception mechanism every time the SysTick counter reaches zero. Must not be called directly from application code.
Definition at line 123 of file arm_cortex_m4_systick.c.