PIC18 LaurTec Library
3.3.1
Open Source C Library for PIC18 Microcontrollers based on C18 - XC8 Compilers
|
#include "intEEPROM.h"
Go to the source code of this file.
Functions | |
unsigned char | internal_EEPROM_write (unsigned char address, unsigned char data) |
unsigned char | internal_EEPROM_read (unsigned char address) |
unsigned char internal_EEPROM_read | ( | unsigned char | address | ) |
This function reads a byte from the internal EEPROM.
address | Address where the byte must be read [min: 0, max: 255] |
Definition at line 146 of file intEEPROM.c.
unsigned char internal_EEPROM_write | ( | unsigned char | address, |
unsigned char | data | ||
) |
This function writes a byte inside the internal EEPROM.
data | Byte to write [min: 0, max: 255] |
address | Address where the byte must be written [min: 0, max: 255] |
Definition at line 48 of file intEEPROM.c.
References read_internal_EEPROM.