Skip to content

Commit 3f41cdf

Browse files
radek8ptoal
authored andcommitted
🔧 EEPROM options for BTT SKR 1.4 (MarlinFirmware#22092)
1 parent da5025b commit 3f41cdf

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Marlin/src/pins/lpc1768/pins_BTT_SKR_V1_4.h

+14
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,20 @@
3131
#define BOARD_CUSTOM_BUILD_FLAGS -DLPC_PINCFG_UART3_P4_28
3232
#endif
3333

34+
//
35+
// EEPROM
36+
//
37+
#if NO_EEPROM_SELECTED
38+
//#define I2C_EEPROM // EEPROM on I2C-0
39+
//#define SDCARD_EEPROM_EMULATION
40+
#endif
41+
42+
#if ENABLED(I2C_EEPROM)
43+
#define MARLIN_EEPROM_SIZE 0x8000 // 32Kb
44+
#elif ENABLED(SDCARD_EEPROM_EMULATION)
45+
#define MARLIN_EEPROM_SIZE 0x800 // 2Kb
46+
#endif
47+
3448
//
3549
// Servos
3650
//

0 commit comments

Comments
 (0)