|
[s] Marlin mit tmc 2208 für P3Steel Toolson 11. September 2019 09:05 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 45 |
|
Re: [s] Marlin mit tmc 2208 für P3Steel Toolson 11. September 2019 13:53 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 140 |
|
Re: [s] Marlin mit tmc 2208 für P3Steel Toolson 12. September 2019 05:07 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 45 |
|
Re: [s] Marlin mit tmc 2208 für P3Steel Toolson 29. October 2019 09:26 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 45 |

#define INVERT_X_DIR false #define INVERT_Y_DIR false
|
Re: [s] Marlin mit tmc 2208 für P3Steel Toolson 29. October 2019 09:35 |
Administrator Registrierungsdatum: 18 Jahre zuvor Beiträge: 14.168 |
#define X_HOME_DIR -1 #define Y_HOME_DIR 1 //-1
|
Re: [s] Marlin mit tmc 2208 für P3Steel Toolson 29. October 2019 10:10 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 45 |
In file included from sketch\MarlinConfig.h:42:0,
from sketch\I2CPositionEncoder.cpp:31:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
In file included from sketch\MarlinConfig.h:42:0,
from sketch\malyanlcd.cpp:44:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
In file included from sketch\MarlinConfig.h:42:0,
from sketch\G26_Mesh_Validation_Tool.cpp:27:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
In file included from sketch\MarlinConfig.h:42:0,
from sketch\SdVolume.cpp:29:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
In file included from sketch\MarlinConfig.h:42:0,
from sketch\Marlin.h:35,
from sketch\stepper_dac.cpp:44:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
exit status 1
In file included from sketch\MarlinConfig.h:42:0,
from sketch\nozzle.cpp:23:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
In file included from sketch\MarlinConfig.h:42:0,
from sketch\neopixel.cpp:27:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
In file included from sketch\MarlinConfig.h:42:0,
from sketch\MarlinSerial.cpp:36:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
In file included from sketch\MarlinConfig.h:42:0,
from sketch\enum.h:26,
from sketch\parser.h:32,
from sketch\parser.cpp:27:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
In file included from sketch\MarlinConfig.h:42:0,
from sketch\stepper_indirection.h:47,
from sketch\stepper_indirection.cpp:34:
SanityCheck.h:1280:8: error: #error "Enable USE_XMAX_PLUG when homing X to MAX."
#error "Enable USE_XMAX_PLUG when homing X to MAX."
^
#error "Enable USE_XMAX_PLUG when homing X to MAX."
|
Re: [s] Marlin mit tmc 2208 für P3Steel Toolson 01. November 2019 10:46 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 300 |
// @section homing // Specify here all the endstop connectors that are connected to any endstop or probe. // Almost all printers will be using one per axis. Probes will use one or more of the // extra connectors. Leave undefined any used for non-endstop and non-probe purposes. #define USE_XMIN_PLUG #define USE_YMIN_PLUG #define USE_ZMIN_PLUG //#define USE_XMAX_PLUG //#define USE_YMAX_PLUG //#define USE_ZMAX_PLUG // Enable pullup for all endstops to prevent a floating state #define ENDSTOPPULLUPS #if DISABLED(ENDSTOPPULLUPS) // Disable ENDSTOPPULLUPS to set pullups individually //#define ENDSTOPPULLUP_XMAX //#define ENDSTOPPULLUP_YMAX //#define ENDSTOPPULLUP_ZMAX #define ENDSTOPPULLUP_XMIN #define ENDSTOPPULLUP_YMIN #define ENDSTOPPULLUP_ZMIN #define ENDSTOPPULLUP_ZMIN_PROBE #endif // Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup). #define X_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop. #define Y_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop. #define Z_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop. #define X_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define Y_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define Z_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop. #define Z_MIN_PROBE_ENDSTOP_INVERTING true // Set to true to invert the logic of the probe. // Direction of endstops when homing; 1=MAX, -1=MIN // :[-1,1] #define X_HOME_DIR -1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1
#define X_DRIVER_TYPE TMC2208_STANDALONE #define Y_DRIVER_TYPE TMC2208_STANDALONE #define Z_DRIVER_TYPE TMC2208_STANDALONE //#define X2_DRIVER_TYPE A4988 //#define Y2_DRIVER_TYPE A4988 //#define Z2_DRIVER_TYPE A4988 //#define Z3_DRIVER_TYPE A4988 #define E0_DRIVER_TYPE TMC2208_STANDALONE //#define E1_DRIVER_TYPE A4988 //#define E2_DRIVER_TYPE A4988 //#define E3_DRIVER_TYPE A4988 //#define E4_DRIVER_TYPE A4988 //#define E5_DRIVER_TYPE A4988

Drucker ein Prusa Mendel i2 + RAMPS 1.4 & LCD 12864 Graphic Smart Controller,