The interface for data entries in the eeprom registry. More...
#include <AP_EEProm.h>
Inherited by AP_EEPromVar< type >.
Public Member Functions | |
virtual void | setEntry (float val)=0 |
virtual float | getEntry ()=0 |
virtual const char * | getEntryName ()=0 |
Pure virtual function for getting entry name. | |
virtual uint16_t | getEntryId ()=0 |
Get the id of the variable. | |
virtual uint16_t | getEntryAddress ()=0 |
Get the address of the variable. |
The interface for data entries in the eeprom registry.
Definition at line 28 of file AP_EEProm.h.
virtual float AP_EEPromEntry::getEntry | ( | ) | [pure virtual] |
Pure virtual function for getting data as a float. The function must handle the cast from the stored variable types.
virtual uint16_t AP_EEPromEntry::getEntryAddress | ( | ) | [pure virtual] |
Get the address of the variable.
virtual uint16_t AP_EEPromEntry::getEntryId | ( | ) | [pure virtual] |
Get the id of the variable.
virtual const char* AP_EEPromEntry::getEntryName | ( | ) | [pure virtual] |
Pure virtual function for getting entry name.
virtual void AP_EEPromEntry::setEntry | ( | float | val | ) | [pure virtual] |
Pure virtual function for setting the data value as a float. The function must handle the cast to the stored variable types.