5.6.1 EEData Associated Variables
Variables used to store data from an EEData read or write must match the types specified
in the read/write function prototype, referenced from mcc.h, and found
in memory.h:
void DATAEE_WriteByte(uint8_t bAdd, uint8_t bData);
uint8_t DATAEE_ReadByte(uint8_t bAdd);
From stdint.h (also referenced), uint8_t is the same as
unsigned char.
