problema compilazione marlin 2.0 bed level April 19, 2020 08:18AM |
Registered: 5 years ago Posts: 29 |
Re: problema compilazione marlin 2.0 bed level April 19, 2020 01:25PM |
Registered: 7 years ago Posts: 1,059 |
/** * Z Probe to nozzle (X,Y) offset, relative to (0, 0). * * In the following example the X and Y offsets are both positive: * * #define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 } * * +-- BACK ---+ * | | * L | (+) P | R <-- probe (20,20) * E | | I * F | (-) N (+) | G <-- nozzle (10,10) * T | | H * | (-) | T * | | * O-- FRONT --+ * (0,0) * * Specify a Probe position as { X, Y, Z } */ #define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
// The size of the print bed #define X_BED_SIZE 220 #define Y_BED_SIZE 220 // Travel limits (mm) after homing, corresponding to endstop positions. #define X_MIN_POS 0 #define Y_MIN_POS 0 #define Z_MIN_POS 0 #define X_MAX_POS X_BED_SIZE #define Y_MAX_POS Y_BED_SIZE #define Z_MAX_POS 200
#define X_MAX_POS 220 #define X_MIN_POS -10 #define Y_MAX_POS 210 #define Y_MIN_POS -10 #define Z_MAX_POS 200 #define Z_MIN_POS 0
Re: problema compilazione marlin 2.0 bed level April 19, 2020 05:27PM |
Registered: 5 years ago Posts: 29 |
Re: problema compilazione marlin 2.0 bed level April 21, 2020 04:46AM |
Registered: 7 years ago Posts: 1,059 |
/** * SD CARD * * SD Card support is disabled by default. If your controller has an SD slot, * you must uncomment the following option or it won't work. * */ #define SDSUPPORT /** * SD CARD: SPI SPEED * * Enable one of the following items for a slower SPI transfer speed. * This may be required to resolve "volume init" errors. */ //#define SPI_SPEED SPI_HALF_SPEED //#define SPI_SPEED SPI_QUARTER_SPEED //#define SPI_SPEED SPI_EIGHTH_SPEED
Re: problema compilazione marlin 2.0 bed level April 23, 2020 04:51PM |
Registered: 5 years ago Posts: 29 |