fix eeprom bug

This commit is contained in:
Zenn 2023-08-07 21:02:07 +02:00
parent 990ae0c03c
commit 24f794ce8a

View file

@ -36,8 +36,8 @@ impl EEPROM {
let c2 = self.read_start_c2();
if c1 != b'Z' || c2 != b'D' {
self.update(b'M');
self.update(b'V');
self.update(b'Z');
self.update(b'D');
self.update(0);
};
}