Browse Source

Fix a BORG compile warning

Scott Lahteine 4 years ago
parent
commit
1087e318e5
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      Marlin/src/pins/stm32/pins_THE_BORG.h

+ 3
- 1
Marlin/src/pins/stm32/pins_THE_BORG.h View File

@@ -30,7 +30,9 @@
30 30
 #define BOARD_INFO_NAME      "The-Borge"
31 31
 #define DEFAULT_MACHINE_NAME BOARD_INFO_NAME
32 32
 
33
-#define E2END 0xFFF   // EEPROM end address
33
+#ifndef E2END
34
+  #define E2END 0xFFF   // EEPROM end address
35
+#endif
34 36
 
35 37
 // Ignore temp readings during development.
36 38
 //#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000

Loading…
Cancel
Save