|
|
@ -59,14 +59,14 @@
|
|
|
|
//============================= DELTA Printer ===============================
|
|
|
|
//============================= DELTA Printer ===============================
|
|
|
|
//===========================================================================
|
|
|
|
//===========================================================================
|
|
|
|
// For a Delta printer start with one of the configuration files in the
|
|
|
|
// For a Delta printer start with one of the configuration files in the
|
|
|
|
// example_configurations/delta directory and customize for your machine.
|
|
|
|
// config/examples/delta directory and customize for your machine.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//===========================================================================
|
|
|
|
//============================= SCARA Printer ===============================
|
|
|
|
//============================= SCARA Printer ===============================
|
|
|
|
//===========================================================================
|
|
|
|
//===========================================================================
|
|
|
|
// For a SCARA printer start with the configuration files in
|
|
|
|
// For a SCARA printer start with the configuration files in
|
|
|
|
// example_configurations/SCARA and customize for your machine.
|
|
|
|
// config/examples/SCARA and customize for your machine.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
// @section info
|
|
|
|
// @section info
|
|
|
@ -100,12 +100,21 @@
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Select the serial port on the board to use for communication with the host.
|
|
|
|
* Select the serial port on the board to use for communication with the host.
|
|
|
|
* This allows the connection of wireless adapters (for instance) to non-default port pins.
|
|
|
|
* This allows the connection of wireless adapters (for instance) to non-default port pins.
|
|
|
|
* Serial port 0 is always used by the Arduino bootloader regardless of this setting.
|
|
|
|
* Note: The first serial port (-1 or 0) will always be used by the Arduino bootloader.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* :[0, 1, 2, 3, 4, 5, 6, 7]
|
|
|
|
* :[-1, 0, 1, 2, 3, 4, 5, 6, 7]
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
#define SERIAL_PORT 0
|
|
|
|
#define SERIAL_PORT 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Select a secondary serial port on the board to use for communication with the host.
|
|
|
|
|
|
|
|
* This allows the connection of wireless adapters (for instance) to non-default port pins.
|
|
|
|
|
|
|
|
* Serial port -1 is the USB emulated serial port, if available.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* :[-1, 0, 1, 2, 3, 4, 5, 6, 7]
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SERIAL_PORT_2 -1
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* This setting determines the communication speed of the printer.
|
|
|
|
* This setting determines the communication speed of the printer.
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -1014,6 +1023,9 @@
|
|
|
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
|
|
|
#define UBL_MESH_EDIT_MOVES_Z // Sophisticated users prefer no movement of nozzle
|
|
|
|
#define UBL_SAVE_ACTIVE_ON_M500 // Save the currently active mesh in the current slot on M500
|
|
|
|
#define UBL_SAVE_ACTIVE_ON_M500 // Save the currently active mesh in the current slot on M500
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//#define UBL_Z_RAISE_WHEN_OFF_MESH 2.5 // When the nozzle is off the mesh, this value is used
|
|
|
|
|
|
|
|
// as the Z-Height correction value.
|
|
|
|
|
|
|
|
|
|
|
|
#elif ENABLED(MESH_BED_LEVELING)
|
|
|
|
#elif ENABLED(MESH_BED_LEVELING)
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//===========================================================================
|
|
|
@ -1457,6 +1469,12 @@
|
|
|
|
// Enable one of the following options to specify your controller.
|
|
|
|
// Enable one of the following options to specify your controller.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// Original RADDS LCD Display+Encoder+SDCardReader
|
|
|
|
|
|
|
|
// http://doku.radds.org/dokumentation/lcd-display/
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
//#define RADDS_DISPLAY
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// ULTIMAKER Controller.
|
|
|
|
// ULTIMAKER Controller.
|
|
|
|
//
|
|
|
|
//
|
|
|
@ -1686,6 +1704,13 @@
|
|
|
|
//#define MKS_12864OLED // Uses the SH1106 controller (default)
|
|
|
|
//#define MKS_12864OLED // Uses the SH1106 controller (default)
|
|
|
|
//#define MKS_12864OLED_SSD1306 // Uses the SSD1306 controller
|
|
|
|
//#define MKS_12864OLED_SSD1306 // Uses the SSD1306 controller
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// AZSMZ 12864 LCD with SD
|
|
|
|
|
|
|
|
// https://www.aliexpress.com/store/product/3D-printer-smart-controller-SMART-RAMPS-OR-RAMPS-1-4-LCD-12864-LCD-control-panel-green/2179173_32213636460.html
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
//#define AZSMZ_12864
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Silvergate GLCD controller
|
|
|
|
// Silvergate GLCD controller
|
|
|
|
// http://github.com/android444/Silvergate
|
|
|
|
// http://github.com/android444/Silvergate
|
|
|
|
//
|
|
|
|
//
|
|
|
|