|
EE445M RTOS
Taken at the University of Texas Spring 2015
|
#include <stdbool.h>#include <stdint.h>#include "inc/hw_ccm.h"#include "inc/hw_memmap.h"#include "inc/hw_types.h"#include "driverlib/crc.h"#include "driverlib/debug.h"
Go to the source code of this file.
Functions | |
| void | CRCConfigSet (uint32_t ui32Base, uint32_t ui32CRCConfig) |
| void | CRCSeedSet (uint32_t ui32Base, uint32_t ui32Seed) |
| void | CRCDataWrite (uint32_t ui32Base, uint32_t ui32Data) |
| uint32_t | CRCResultRead (uint32_t ui32Base, bool bPPResult) |
| uint32_t | CRCDataProcess (uint32_t ui32Base, uint32_t *pui32DataIn, uint32_t ui32DataLength, bool bPPResult) |