|
@ -23,9 +23,13 @@ |
|
|
// Serial port 0 is still used by the Arduino bootloader regardless of this setting.
|
|
|
// Serial port 0 is still used by the Arduino bootloader regardless of this setting.
|
|
|
#define SERIAL_PORT 0 |
|
|
#define SERIAL_PORT 0 |
|
|
|
|
|
|
|
|
|
|
|
// This determines the communication speed of the printer
|
|
|
// This determines the communication speed of the printer
|
|
|
// This determines the communication speed of the printer
|
|
|
#define BAUDRATE 250000 |
|
|
#define BAUDRATE 250000 |
|
|
//#define BAUDRATE 115200
|
|
|
|
|
|
|
|
|
// This enables the serial port associated to the Bluetooth interface
|
|
|
|
|
|
//#define BTENABLED // Enable BT interface on AT90USB devices
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//// The following define selects which electronics board you have. Please choose the one that matches your setup
|
|
|
//// The following define selects which electronics board you have. Please choose the one that matches your setup
|
|
|
// 10 = Gen7 custom (Alfons3 Version) "https://github.com/Alfons3/Generation_7_Electronics"
|
|
|
// 10 = Gen7 custom (Alfons3 Version) "https://github.com/Alfons3/Generation_7_Electronics"
|
|
@ -54,6 +58,7 @@ |
|
|
// 80 = Rumba
|
|
|
// 80 = Rumba
|
|
|
// 81 = Printrboard (AT90USB1286)
|
|
|
// 81 = Printrboard (AT90USB1286)
|
|
|
// 82 = Brainwave (AT90USB646)
|
|
|
// 82 = Brainwave (AT90USB646)
|
|
|
|
|
|
// 83 = SAV Mk-I (AT90USB1286)
|
|
|
// 9 = Gen3+
|
|
|
// 9 = Gen3+
|
|
|
// 70 = Megatronics
|
|
|
// 70 = Megatronics
|
|
|
// 701= Megatronics v2.0
|
|
|
// 701= Megatronics v2.0
|
|
@ -64,7 +69,7 @@ |
|
|
// 21 = Elefu Ra Board (v3)
|
|
|
// 21 = Elefu Ra Board (v3)
|
|
|
|
|
|
|
|
|
#ifndef MOTHERBOARD |
|
|
#ifndef MOTHERBOARD |
|
|
#define MOTHERBOARD 7 |
|
|
//#define MOTHERBOARD 7
|
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
// Define this to set a custom name for your generic Mendel,
|
|
|
// Define this to set a custom name for your generic Mendel,
|
|
@ -514,6 +519,17 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of |
|
|
#define ULTIPANEL |
|
|
#define ULTIPANEL |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
// Shift register panels
|
|
|
|
|
|
// ---------------------
|
|
|
|
|
|
// 2 wire Non-latching LCD SR from:
|
|
|
|
|
|
// https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection
|
|
|
|
|
|
//#define SR_LCD
|
|
|
|
|
|
#ifdef SR_LCD |
|
|
|
|
|
#define SR_LCD_2W_NL // Non latching 2 wire shiftregister
|
|
|
|
|
|
//#define NEWPANEL
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ULTIPANEL |
|
|
#ifdef ULTIPANEL |
|
|
// #define NEWPANEL //enable this if you have a click-encoder panel
|
|
|
// #define NEWPANEL //enable this if you have a click-encoder panel
|
|
|
#define SDSUPPORT |
|
|
#define SDSUPPORT |
|
|