Hallo, ich habe einen Tantillus, dieser hat an der X- und Y-Achse keine Referenzpunktschalter.
Ich habe jetzt mal die Marlin-FW upgedatet, in der neuen Version sind die Einstellungen aber ein gutes Stück anders/umfangreicher als bei der uralten Version, die ich vorher benutzt habe.
Im Moment bin ich immer noch auf der Suche, wo und wie ich einstelle, dass X und Y keine Referenzpunktschalter haben.
wenn ich im Code folgendes eintrage:
// 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
// coarse Endstop Settings
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
#if DISABLED(ENDSTOPPULLUPS)
// fine endstop settings: Individual pullups. will be ignored if ENDSTOPPULLUPS is defined
//#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 false // set to true to invert the logic of the endstop.
#define X_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
#define Y_MAX_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.
#define Z_MAX_ENDSTOP_INVERTING true // 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.
bekomme ich beim Compilieren die Meldung:
Arduino: 1.8.3 (Windows 7), Board: "Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)"
In file included from sketch\MarlinConfig.h:39:0,
from E:\Tantillus_V2_0\Marlin\Marlin.ino:31:
SanityCheck.h:967: error: #error "You must enable USE_XMIN_PLUG or USE_XMAX_PLUG."
#error "You must enable USE_XMIN_PLUG or USE_XMAX_PLUG."
^
exit status 1
#error "You must enable USE_XMIN_PLUG or USE_XMAX_PLUG."
Wenn ich dagegen so konfiguriere:
// 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
dann macht der Drucker vor dem Drucken Referenzfahrten in allen drei Achsen, fährt bei X und Y auf Kollision, druckt dann aber trotzdem los.
Wie und wo kann ich einstellen, dass in X und Y keine Referenzfahrt gemacht wird?
Danke für eure Hilfe.