Prusa-Firmware-MMU/src/hal/avr/eeprom.cpp

15 lines
215 B
C++

#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