#include <stdbool.h>#include <stdint.h>#include <inc/hw_ints.h>#include <inc/hw_nvic.h>#include <inc/hw_types.h>#include <driverlib/debug.h>#include <driverlib/interrupt.h>Go to the source code of this file.
Functions | |
| __STATIC_INLINE void | SysTickEnable (void) |
| Enables the SysTick counter. More... | |
| __STATIC_INLINE void | SysTickDisable (void) |
| Disables the SysTick counter. More... | |
| __STATIC_INLINE void | SysTickIntRegister (void(*pfnHandler)(void)) |
| Registers an interrupt handler for the SysTick interrupt. More... | |
| __STATIC_INLINE void | SysTickIntUnregister (void) |
| Unregisters the interrupt handler for the SysTick interrupt. More... | |
| __STATIC_INLINE void | SysTickIntEnable (void) |
| Enables the SysTick interrupt. More... | |
| __STATIC_INLINE void | SysTickIntDisable (void) |
| Disables the SysTick interrupt. More... | |
| __STATIC_INLINE void | SysTickPeriodSet (uint32_t ui32Period) |
| Sets the period of the SysTick counter. More... | |
| __STATIC_INLINE uint32_t | SysTickPeriodGet (void) |
| Gets the period of the SysTick counter. More... | |
| __STATIC_INLINE uint32_t | SysTickValueGet (void) |
| Gets the current value of the SysTick counter. More... | |