LTlib LaurTec Library
4.0.3
Open Source C Library for Microchip Microcontrollers based on XC8 Compiler
|
#include "LTlib.h"
Go to the source code of this file.
Macros | |
#define | write_internal_EEPROM EEPROM_write_byte |
#define | internal_EEPROM_write EEPROM_write_byte |
#define | read_internal_EEPROM EEPROM_read_byte |
#define | internal_EEPROM_read EEPROM_read_byte |
Functions | |
unsigned char | EEPROM_write_byte (unsigned char address, unsigned char data) |
unsigned char | EEPROM_read_byte (unsigned char address) |
#define internal_EEPROM_read EEPROM_read_byte |
Definition at line 92 of file module_EEPROM.h.
#define internal_EEPROM_write EEPROM_write_byte |
Definition at line 77 of file module_EEPROM.h.
#define read_internal_EEPROM EEPROM_read_byte |
Definition at line 91 of file module_EEPROM.h.
#define write_internal_EEPROM EEPROM_write_byte |
Definition at line 76 of file module_EEPROM.h.
unsigned char EEPROM_read_byte | ( | 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 module_EEPROM.c.
unsigned char EEPROM_write_byte | ( | 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 module_EEPROM.c.
References read_internal_EEPROM.