#include "../eeprom.h" namespace hal { namespace eeprom { uint8_t ReadByte(const uint8_t *addr) { return 0; } void UpdateByte(const uint8_t *addr, uint8_t value) { } } // namespace eeprom } // namespace hal