|
|
|
@ -22,10 +22,21 @@
|
|
|
|
|
// This allows the connection of wireless adapters (for instance) to non-default port pins.
|
|
|
|
|
// Serial port 0 is still used by the Arduino bootloader regardless of this setting.
|
|
|
|
|
#define SERIAL_PORT 0
|
|
|
|
|
//#define SERIAL_PORT 1 // Define serial port 1 for bluetooth configuration in AT90USB configurations
|
|
|
|
|
|
|
|
|
|
// This determines the communication speed of the printer
|
|
|
|
|
// This determines the communication speed of the printer
|
|
|
|
|
#define BAUDRATE 250000
|
|
|
|
|
//#define BAUDRATE 115200
|
|
|
|
|
|
|
|
|
|
// This enables the serial port associated to the Bluetooth interface
|
|
|
|
|
//#define BTENABLED // Enable BT interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// SERIAL_PORT selects which serial port should be used for communication with the host.
|
|
|
|
|
// This allows the connection of wireless adapters (for instance) to non-default port pins.
|
|
|
|
|
// Serial port 0 is still used by the Arduino bootloader regardless of this setting.
|
|
|
|
|
#define SERIAL_PORT 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//// 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"
|
|
|
|
@ -54,6 +65,7 @@
|
|
|
|
|
// 80 = Rumba
|
|
|
|
|
// 81 = Printrboard (AT90USB1286)
|
|
|
|
|
// 82 = Brainwave (AT90USB646)
|
|
|
|
|
// 83 = SAV Mk-I (AT90USB1286)
|
|
|
|
|
// 9 = Gen3+
|
|
|
|
|
// 70 = Megatronics
|
|
|
|
|
// 701= Megatronics v2.0
|
|
|
|
@ -64,7 +76,8 @@
|
|
|
|
|
// 21 = Elefu Ra Board (v3)
|
|
|
|
|
|
|
|
|
|
#ifndef MOTHERBOARD
|
|
|
|
|
#define MOTHERBOARD 7
|
|
|
|
|
//[FMC]#define MOTHERBOARD 7
|
|
|
|
|
#define MOTHERBOARD 83
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Define this to set a custom name for your generic Mendel,
|
|
|
|
@ -507,6 +520,15 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|
|
|
|
#define ULTIPANEL
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Shift register panels
|
|
|
|
|
// ---------------------
|
|
|
|
|
//#define SR_LCD
|
|
|
|
|
#ifdef SR_LCD
|
|
|
|
|
#define SR_LCD_2W_NL // Non latching 2 wire shiftregister
|
|
|
|
|
//#define NEWPANEL
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ULTIPANEL
|
|
|
|
|
// #define NEWPANEL //enable this if you have a click-encoder panel
|
|
|
|
|
#define SDSUPPORT
|
|
|
|
|