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