Browse Source

Fix eeprom init glitch

Scott Lahteine 5 years ago
parent
commit
6edc2c3690
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/HAL/LPC1768/eeprom_wired.cpp

+ 1
- 1
Marlin/src/HAL/LPC1768/eeprom_wired.cpp View File

40
 bool PersistentStore::access_finish() { return true; }
40
 bool PersistentStore::access_finish() { return true; }
41
 
41
 
42
 bool PersistentStore::access_start() {
42
 bool PersistentStore::access_start() {
43
-  TERN_(SPI_EEPROM, eeprom_init());
43
+  TERN_(I2C_EEPROM, eeprom_init());
44
   return true;
44
   return true;
45
 }
45
 }
46
 
46
 

Loading…
Cancel
Save