EE445M RTOS
Taken at the University of Texas Spring 2015
|
#include <stdbool.h>
#include <stdint.h>
#include "inc/hw_ints.h"
#include "inc/hw_sysctl.h"
#include "inc/hw_sysexc.h"
#include "inc/hw_types.h"
#include "driverlib/debug.h"
#include "driverlib/interrupt.h"
Go to the source code of this file.
Functions | |
static uint32_t | _SysExcIntNumberGet (void) |
void | SysExcIntRegister (void(*pfnHandler)(void)) |
void | SysExcIntUnregister (void) |
void | SysExcIntEnable (uint32_t ui32IntFlags) |
void | SysExcIntDisable (uint32_t ui32IntFlags) |
uint32_t | SysExcIntStatus (bool bMasked) |
void | SysExcIntClear (uint32_t ui32IntFlags) |