|
@@ -17,8 +17,7 @@
|
17
|
17
|
#define SERIAL_PORT 0
|
18
|
18
|
|
19
|
19
|
// This determines the communication speed of the printer
|
20
|
|
-#define BAUDRATE 250000
|
21
|
|
-//#define BAUDRATE 115200
|
|
20
|
+#define BAUDRATE 115200
|
22
|
21
|
|
23
|
22
|
//// The following define selects which electronics board you have. Please choose the one that matches your setup
|
24
|
23
|
// 10 = Gen7 custom (Alfons3 Version) "https://github.com/Alfons3/Generation_7_Electronics"
|
|
@@ -36,6 +35,7 @@
|
36
|
35
|
// 63 = Melzi
|
37
|
36
|
// 64 = STB V1.1
|
38
|
37
|
// 65 = Azteeg X1
|
|
38
|
+// 66 = Melzi with ATmega1284 (MaKr3d version)
|
39
|
39
|
// 7 = Ultimaker
|
40
|
40
|
// 71 = Ultimaker (Older electronics. Pre 1.5.4. This is rare)
|
41
|
41
|
// 77 = 3Drag Controller
|
|
@@ -371,10 +371,10 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
|
371
|
371
|
// M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
|
372
|
372
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
373
|
373
|
//define this to enable eeprom support
|
374
|
|
-//#define EEPROM_SETTINGS
|
|
374
|
+#define EEPROM_SETTINGS
|
375
|
375
|
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
376
|
376
|
// please keep turned on if you can.
|
377
|
|
-//#define EEPROM_CHITCHAT
|
|
377
|
+#define EEPROM_CHITCHAT
|
378
|
378
|
|
379
|
379
|
// Preheat Constants
|
380
|
380
|
#define PLA_PREHEAT_HOTEND_TEMP 180
|
|
@@ -394,6 +394,10 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
|
394
|
394
|
//#define ULTIMAKERCONTROLLER //as available from the ultimaker online store.
|
395
|
395
|
//#define ULTIPANEL //the ultipanel as on thingiverse
|
396
|
396
|
|
|
397
|
+// The MaKr3d Makr-Panel with graphic controller and SD support
|
|
398
|
+// http://reprap.org/wiki/MaKr3d_MaKrPanel
|
|
399
|
+//#define MAKRPANEL
|
|
400
|
+
|
397
|
401
|
// The RepRapDiscount Smart Controller (white PCB)
|
398
|
402
|
// http://reprap.org/wiki/RepRapDiscount_Smart_Controller
|
399
|
403
|
//#define REPRAP_DISCOUNT_SMART_CONTROLLER
|
|
@@ -419,6 +423,14 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
|
419
|
423
|
//#define RA_CONTROL_PANEL
|
420
|
424
|
|
421
|
425
|
//automatic expansion
|
|
426
|
+#if defined (MAKRPANEL)
|
|
427
|
+ #define DOGLCD
|
|
428
|
+ #define SDSUPPORT
|
|
429
|
+ #define ULTIPANEL
|
|
430
|
+ #define NEWPANEL
|
|
431
|
+ #define DEFAULT_LCD_CONTRAST 17
|
|
432
|
+#endif
|
|
433
|
+
|
422
|
434
|
#if defined (REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
|
423
|
435
|
#define DOGLCD
|
424
|
436
|
#define U8GLIB_ST7920
|