|
EE445M RTOS
Taken at the University of Texas Spring 2015
|
#include <stdbool.h>#include <stdint.h>#include "inc/hw_flash.h"#include "inc/hw_ints.h"#include "inc/hw_sysctl.h"#include "inc/hw_types.h"#include "driverlib/debug.h"#include "driverlib/flash.h"#include "driverlib/interrupt.h"
Go to the source code of this file.
Functions | |
| int32_t | FlashErase (uint32_t ui32Address) |
| int32_t | FlashProgram (uint32_t *pui32Data, uint32_t ui32Address, uint32_t ui32Count) |
| tFlashProtection | FlashProtectGet (uint32_t ui32Address) |
| int32_t | FlashProtectSet (uint32_t ui32Address, tFlashProtection eProtect) |
| int32_t | FlashProtectSave (void) |
| int32_t | FlashUserGet (uint32_t *pui32User0, uint32_t *pui32User1) |
| int32_t | FlashUserSet (uint32_t ui32User0, uint32_t ui32User1) |
| int32_t | FlashUserSave (void) |
| void | FlashIntRegister (void(*pfnHandler)(void)) |
| void | FlashIntUnregister (void) |
| void | FlashIntEnable (uint32_t ui32IntFlags) |
| void | FlashIntDisable (uint32_t ui32IntFlags) |
| uint32_t | FlashIntStatus (bool bMasked) |
| void | FlashIntClear (uint32_t ui32IntFlags) |
Variables | |
| static const uint32_t | g_pui32FMPPERegs [] |
| static const uint32_t | g_pui32FMPRERegs [] |