FuSa 8-Bit Libraries Safety Framework
Loading...
Searching...
No Matches
driver_crcscan.c
Go to the documentation of this file.
1
22
23// Framework Includes
24#include <driver_crcscan.h>
25
26// Device-specific Includes
27#include <xc.h>
28
30{
31 return CRCSCAN.INTFLAGS;
32}
33
34void CRCSCAN_WriteIntFlags(uint8_t value)
35{
36 CRCSCAN.INTFLAGS = value;
37}
38
39uint8_t CRCSCAN_ReadStatus(void)
40{
41 return CRCSCAN.STATUSA;
42}
uint8_t CRCSCAN_ReadStatus(void)
Reads the STATUSA register value.
void CRCSCAN_WriteIntFlags(uint8_t value)
Overwrites the INTFLAGS register value.
uint8_t CRCSCAN_ReadIntFlags(void)
Reads the INTFLAGS register value.