/firmware/src/shared/Eeprom.hh
http://github.com/makerbot/G3Firmware · C++ Header · 16 lines · 10 code · 6 blank · 0 comment · 0 complexity · e6543b0dd51d0d24b3301e0e5376f52a MD5 · raw file
- #ifndef EEPROM_HH
- #define EEPROM_HH
- #include <stdint.h>
- namespace eeprom {
- void init();
- uint8_t getEeprom8(const uint16_t location, const uint8_t default_value);
- uint16_t getEeprom16(const uint16_t location, const uint16_t default_value);
- float getEepromFixed16(const uint16_t location, const float default_value);
- }
- #endif // EEPROM_HH