![]() |
![]() |
CC27xxDriverLibrary
|
#include <stdbool.h>
#include <stdint.h>
#include "../inc/hw_types.h"
#include "../inc/hw_ints.h"
#include "../inc/hw_memmap.h"
#include "../inc/hw_systick.h"
#include "debug.h"
#include "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 | SysTickRegisterInt (void(*pfnHandler)(void)) |
Registers an interrupt handler for the SysTick interrupt in the dynamic interrupt table. More... | |
__STATIC_INLINE void | SysTickUnregisterInt (void) |
Unregisters the interrupt handler for the SysTick interrupt in the dynamic interrupt table. More... | |
__STATIC_INLINE void | SysTickEnableInt (void) |
Enables the SysTick interrupt. More... | |
__STATIC_INLINE void | SysTickDisableInt (void) |
Disables the SysTick interrupt. More... | |
__STATIC_INLINE void | SysTickSetPeriod (uint32_t period) |
Sets the period of the SysTick counter. More... | |
__STATIC_INLINE uint32_t | SysTickGetPeriod (void) |
Gets the period of the SysTick counter. More... | |
__STATIC_INLINE uint32_t | SysTickGetValue (void) |
Gets the current value of the SysTick counter. More... | |