Ok, letzter stand von heute:
Liegt das an meiner GUI oder sind die Wirklich nicht definiert?
Und wo werden die definiert?
Das kommt beim kompilieren als Fehlermeldung:
Arduino: 1.8.0 (Windows 7), Board: “Anet V1.0”
Marlin_main.cpp:406: error: 'X_MIN_POS' was not declared in this scope
float soft_endstop_min[XYZ] = { X_MIN_POS, Y_MIN_POS, Z_MIN_POS },
^
Marlin_main.cpp:406: error: 'Y_MIN_POS' was not declared in this scope
float soft_endstop_min[XYZ] = { X_MIN_POS, Y_MIN_POS, Z_MIN_POS },
^
Marlin_main.cpp:406: error: 'Z_MIN_POS' was not declared in this scope
float soft_endstop_min[XYZ] = { X_MIN_POS, Y_MIN_POS, Z_MIN_POS },
^
Marlin_main.cpp:407: error: 'X_MAX_POS' was not declared in this scope
soft_endstop_max[XYZ] = { X_MAX_POS, Y_MAX_POS, Z_MAX_POS };
^
Marlin_main.cpp:407: error: 'Y_MAX_POS' was not declared in this scope
soft_endstop_max[XYZ] = { X_MAX_POS, Y_MAX_POS, Z_MAX_POS };
^
Marlin_main.cpp:407: error: 'Z_MAX_POS' was not declared in this scope
soft_endstop_max[XYZ] = { X_MAX_POS, Y_MAX_POS, Z_MAX_POS };
^
Marlin_main.cpp:459: error: 'Z_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
float zprobe_zoffset = Z_PROBE_OFFSET_FROM_EXTRUDER;
^
Marlin_main.cpp:657: error: 'X_MIN_POS' was not declared in this scope
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:661:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS)
^
Marlin_main.cpp:657: error: 'Y_MIN_POS' was not declared in this scope
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:661:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS)
^
Marlin_main.cpp:657: error: 'Z_MIN_POS' was not declared in this scope
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:661:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS)
^
Marlin_main.cpp:657: error: 'X_MAX_POS' was not declared in this scope
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:662:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS)
^
Marlin_main.cpp:657: error: 'Y_MAX_POS' was not declared in this scope
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:662:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS)
^
Marlin_main.cpp:657: error: 'Z_MAX_POS' was not declared in this scope
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:662:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS)
^
In file included from sketch\MarlinConfig.h:38:0,
from sketch\Marlin.h:36,
from sketch\Marlin_main.cpp:220:
Conditionals_post.h:96: error: 'X_MIN_POS' was not declared in this scope
#define X_HOME_POS (X_HOME_DIR < 0 ? X_MIN_POS : X_MAX_POS)
^
sketch\Marlin_main.cpp:657:9: note: in expansion of macro 'X_HOME_POS'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:663:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS)
^
Conditionals_post.h:96: error: 'X_MAX_POS' was not declared in this scope
#define X_HOME_POS (X_HOME_DIR < 0 ? X_MIN_POS : X_MAX_POS)
^
sketch\Marlin_main.cpp:657:9: note: in expansion of macro 'X_HOME_POS'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:663:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS)
^
Conditionals_post.h:112: error: 'Y_MIN_POS' was not declared in this scope
#define Y_HOME_POS (Y_HOME_DIR < 0 ? Y_MIN_POS : Y_MAX_POS)
^
sketch\Marlin_main.cpp:657:21: note: in expansion of macro 'Y_HOME_POS'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:663:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS)
^
Conditionals_post.h:112: error: 'Y_MAX_POS' was not declared in this scope
#define Y_HOME_POS (Y_HOME_DIR < 0 ? Y_MIN_POS : Y_MAX_POS)
^
sketch\Marlin_main.cpp:657:21: note: in expansion of macro 'Y_HOME_POS'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:663:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS)
^
Conditionals_post.h:119: error: 'Z_MIN_POS' was not declared in this scope
#define Z_HOME_POS (Z_HOME_DIR < 0 ? Z_MIN_POS : Z_MAX_POS)
^
sketch\Marlin_main.cpp:657:33: note: in expansion of macro 'Z_HOME_POS'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:663:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS)
^
Conditionals_post.h:119: error: 'Z_MAX_POS' was not declared in this scope
#define Z_HOME_POS (Z_HOME_DIR < 0 ? Z_MIN_POS : Z_MAX_POS)
^
sketch\Marlin_main.cpp:657:33: note: in expansion of macro 'Z_HOME_POS'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:663:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS)
^
Conditionals_post.h:34: error: 'X_MAX_POS' was not declared in this scope
#define X_MAX_LENGTH (X_MAX_POS - (X_MIN_POS))
^
sketch\Marlin_main.cpp:657:9: note: in expansion of macro 'X_MAX_LENGTH'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:664:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH)
^
Conditionals_post.h:34: error: 'X_MIN_POS' was not declared in this scope
#define X_MAX_LENGTH (X_MAX_POS - (X_MIN_POS))
^
sketch\Marlin_main.cpp:657:9: note: in expansion of macro 'X_MAX_LENGTH'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:664:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH)
^
Conditionals_post.h:35: error: 'Y_MAX_POS' was not declared in this scope
#define Y_MAX_LENGTH (Y_MAX_POS - (Y_MIN_POS))
^
sketch\Marlin_main.cpp:657:21: note: in expansion of macro 'Y_MAX_LENGTH'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:664:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH)
^
Conditionals_post.h:35: error: 'Y_MIN_POS' was not declared in this scope
#define Y_MAX_LENGTH (Y_MAX_POS - (Y_MIN_POS))
^
sketch\Marlin_main.cpp:657:21: note: in expansion of macro 'Y_MAX_LENGTH'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:664:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH)
^
Conditionals_post.h:36: error: 'Z_MAX_POS' was not declared in this scope
#define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
^
sketch\Marlin_main.cpp:657:33: note: in expansion of macro 'Z_MAX_LENGTH'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:664:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH)
^
Conditionals_post.h:36: error: 'Z_MIN_POS' was not declared in this scope
#define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
^
sketch\Marlin_main.cpp:657:33: note: in expansion of macro 'Z_MAX_LENGTH'
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
^
sketch\Marlin_main.cpp:664:1: note: in expansion of macro 'XYZ_CONSTS_FROM_CONFIG'
XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH)
^
sketch\Marlin_main.cpp: In function 'float run_z_probe()':
Conditionals_post.h:36: error: 'Z_MAX_POS' was not declared in this scope
#define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
^
sketch\Marlin_main.cpp:2121:23: note: in expansion of macro 'Z_MAX_LENGTH'
do_probe_move(-(Z_MAX_LENGTH) - 10, Z_PROBE_SPEED_FAST);
^
Conditionals_post.h:36: error: 'Z_MIN_POS' was not declared in this scope
#define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
^
sketch\Marlin_main.cpp:2121:23: note: in expansion of macro 'Z_MAX_LENGTH'
do_probe_move(-(Z_MAX_LENGTH) - 10, Z_PROBE_SPEED_FAST);
^
sketch\Marlin_main.cpp: In function 'float probe_pt(const float&, const float&, bool, int)':
Marlin_main.cpp:2187: error: 'X_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
do_blocking_move_to_xy(x - (X_PROBE_OFFSET_FROM_EXTRUDER), y - (Y_PROBE_OFFSET_FROM_EXTRUDER));
^
Marlin_main.cpp:2187: error: 'Y_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
do_blocking_move_to_xy(x - (X_PROBE_OFFSET_FROM_EXTRUDER), y - (Y_PROBE_OFFSET_FROM_EXTRUDER));
^
sketch\Marlin_main.cpp: In function 'bool position_is_reachable(float*, bool)':
Marlin_main.cpp:2904: error: 'X_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
dx -= X_PROBE_OFFSET_FROM_EXTRUDER;
^
Marlin_main.cpp:2905: error: 'Y_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
dy -= Y_PROBE_OFFSET_FROM_EXTRUDER;
^
Marlin_main.cpp:2920: error: 'X_MIN_POS' was not declared in this scope
return dx >= X_MIN_POS - 0.0001 && dx <= X_MAX_POS + 0.0001
^
Marlin_main.cpp:2920: error: 'X_MAX_POS' was not declared in this scope
return dx >= X_MIN_POS - 0.0001 && dx <= X_MAX_POS + 0.0001
^
Marlin_main.cpp:2921: error: 'Y_MIN_POS' was not declared in this scope
&& dy >= Y_MIN_POS - 0.0001 && dy <= Y_MAX_POS + 0.0001
^
Marlin_main.cpp:2921: error: 'Y_MAX_POS' was not declared in this scope
&& dy >= Y_MIN_POS - 0.0001 && dy <= Y_MAX_POS + 0.0001
^
Marlin_main.cpp:2922: error: 'Z_MIN_POS' was not declared in this scope
&& dz >= Z_MIN_POS - 0.0001 && dz <= Z_MAX_POS + 0.0001;
^
Marlin_main.cpp:2922: error: 'Z_MAX_POS' was not declared in this scope
&& dz >= Z_MIN_POS - 0.0001 && dz <= Z_MAX_POS + 0.0001;
^
In file included from sketch\Marlin_main.cpp:220:0:
sketch\Marlin_main.cpp: In function 'void home_z_safely()':
Configuration.h:938: error: 'X_MAX_POS' was not declared in this scope
#define Z_SAFE_HOMING_X_POINT (X_MAX_POS / 2) // X point for Z homing when homing all axis (G28).
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3343:27: note: in expansion of macro 'LOGICAL_X_POSITION'
destination[X_AXIS] = LOGICAL_X_POSITION(Z_SAFE_HOMING_X_POINT);
^
sketch\Marlin_main.cpp:3343:46: note: in expansion of macro 'Z_SAFE_HOMING_X_POINT'
destination[X_AXIS] = LOGICAL_X_POSITION(Z_SAFE_HOMING_X_POINT);
^
Configuration.h:939: error: 'Y_MAX_POS' was not declared in this scope
#define Z_SAFE_HOMING_Y_POINT (Y_MAX_POS / 2) // Y point for Z homing when homing all axis (G28).
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3344:27: note: in expansion of macro 'LOGICAL_Y_POSITION'
destination[Y_AXIS] = LOGICAL_Y_POSITION(Z_SAFE_HOMING_Y_POINT);
^
sketch\Marlin_main.cpp:3344:46: note: in expansion of macro 'Z_SAFE_HOMING_Y_POINT'
destination[Y_AXIS] = LOGICAL_Y_POSITION(Z_SAFE_HOMING_Y_POINT);
^
Marlin_main.cpp:3356: error: 'X_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
destination[X_AXIS] -= X_PROBE_OFFSET_FROM_EXTRUDER;
^
Marlin_main.cpp:3357: error: 'Y_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
destination[Y_AXIS] -= Y_PROBE_OFFSET_FROM_EXTRUDER;
^
In file included from sketch\Marlin_main.cpp:220:0:
sketch\Marlin_main.cpp: In function 'void gcode_G29()':
Marlin_main.cpp:3942: error: 'LEFT_PROBE_BED_POSITION' was not declared in this scope
int left_probe_bed_position = code_seen('L') ? (int)code_value_axis_units(X_AXIS) : LOGICAL_X_POSITION(LEFT_PROBE_BED_POSITION),
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3942:91: note: in expansion of macro 'LOGICAL_X_POSITION'
int left_probe_bed_position = code_seen('L') ? (int)code_value_axis_units(X_AXIS) : LOGICAL_X_POSITION(LEFT_PROBE_BED_POSITION),
^
Marlin_main.cpp:3947: error: 'MIN_PROBE_X' was not declared in this scope
bool left_out_l = left_probe_bed_position < LOGICAL_X_POSITION(MIN_PROBE_X),
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3947:51: note: in expansion of macro 'LOGICAL_X_POSITION'
bool left_out_l = left_probe_bed_position < LOGICAL_X_POSITION(MIN_PROBE_X),
^
Marlin_main.cpp:3956: error: 'left_out' was not declared in this scope
if (left_out || right_out || front_out || back_out) {
^
Marlin_main.cpp:3956: error: 'right_out' was not declared in this scope
if (left_out || right_out || front_out || back_out) {
^
Marlin_main.cpp:3956: error: 'front_out' was not declared in this scope
if (left_out || right_out || front_out || back_out) {
^
Marlin_main.cpp:3956: error: 'back_out' was not declared in this scope
if (left_out || right_out || front_out || back_out) {
^
Marlin_main.cpp:3959: error: 'right_probe_bed_position' was not declared in this scope
left_probe_bed_position = left_out_l ? LOGICAL_X_POSITION(MIN_PROBE_X) : right_probe_bed_position - (MIN_PROBE_EDGE);
^
Marlin_main.cpp:3963: error: 'right_probe_bed_position' was not declared in this scope
right_probe_bed_position = right_out_r ? LOGICAL_Y_POSITION(MAX_PROBE_X) : left_probe_bed_position + MIN_PROBE_EDGE;
^
Marlin_main.cpp:3963: error: 'right_out_r' was not declared in this scope
right_probe_bed_position = right_out_r ? LOGICAL_Y_POSITION(MAX_PROBE_X) : left_probe_bed_position + MIN_PROBE_EDGE;
^
In file included from sketch\Marlin_main.cpp:220:0:
Conditionals_post.h:713: error: 'X_MAX_POS' was not declared in this scope
#define MAX_PROBE_X (min(X_MAX_POS, X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3963:52: note: in expansion of macro 'LOGICAL_Y_POSITION'
right_probe_bed_position = right_out_r ? LOGICAL_Y_POSITION(MAX_PROBE_X) : left_probe_bed_position + MIN_PROBE_EDGE;
^
sketch\Conditionals_post.h:713:26: note: in expansion of macro 'min'
#define MAX_PROBE_X (min(X_MAX_POS, X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin_main.cpp:3963:71: note: in expansion of macro 'MAX_PROBE_X'
right_probe_bed_position = right_out_r ? LOGICAL_Y_POSITION(MAX_PROBE_X) : left_probe_bed_position + MIN_PROBE_EDGE;
^
Conditionals_post.h:713: error: 'X_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
#define MAX_PROBE_X (min(X_MAX_POS, X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3963:52: note: in expansion of macro 'LOGICAL_Y_POSITION'
right_probe_bed_position = right_out_r ? LOGICAL_Y_POSITION(MAX_PROBE_X) : left_probe_bed_position + MIN_PROBE_EDGE;
^
sketch\Conditionals_post.h:713:26: note: in expansion of macro 'min'
#define MAX_PROBE_X (min(X_MAX_POS, X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin_main.cpp:3963:71: note: in expansion of macro 'MAX_PROBE_X'
right_probe_bed_position = right_out_r ? LOGICAL_Y_POSITION(MAX_PROBE_X) : left_probe_bed_position + MIN_PROBE_EDGE;
^
Marlin_main.cpp:3967: error: 'front_probe_bed_position' was not declared in this scope
front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
^
Marlin_main.cpp:3967: error: 'front_out_f' was not declared in this scope
front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
^
In file included from sketch\Marlin_main.cpp:220:0:
Conditionals_post.h:714: error: 'Y_MIN_POS' was not declared in this scope
#define MIN_PROBE_Y (max(Y_MIN_POS, Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3967:52: note: in expansion of macro 'LOGICAL_Y_POSITION'
front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
^
sketch\Conditionals_post.h:714:26: note: in expansion of macro 'max'
#define MIN_PROBE_Y (max(Y_MIN_POS, Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin_main.cpp:3967:71: note: in expansion of macro 'MIN_PROBE_Y'
front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
^
Conditionals_post.h:714: error: 'Y_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
#define MIN_PROBE_Y (max(Y_MIN_POS, Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3967:52: note: in expansion of macro 'LOGICAL_Y_POSITION'
front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
^
sketch\Conditionals_post.h:714:26: note: in expansion of macro 'max'
#define MIN_PROBE_Y (max(Y_MIN_POS, Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin_main.cpp:3967:71: note: in expansion of macro 'MIN_PROBE_Y'
front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
^
Marlin_main.cpp:3967: error: 'back_probe_bed_position' was not declared in this scope
front_probe_bed_position = front_out_f ? LOGICAL_Y_POSITION(MIN_PROBE_Y) : back_probe_bed_position - (MIN_PROBE_EDGE);
^
Marlin_main.cpp:3971: error: 'back_probe_bed_position' was not declared in this scope
back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
^
Marlin_main.cpp:3971: error: 'back_out_b' was not declared in this scope
back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
^
In file included from sketch\Marlin_main.cpp:220:0:
Conditionals_post.h:715: error: 'Y_MAX_POS' was not declared in this scope
#define MAX_PROBE_Y (min(Y_MAX_POS, Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3971:50: note: in expansion of macro 'LOGICAL_Y_POSITION'
back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
^
sketch\Conditionals_post.h:715:26: note: in expansion of macro 'min'
#define MAX_PROBE_Y (min(Y_MAX_POS, Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin_main.cpp:3971:69: note: in expansion of macro 'MAX_PROBE_Y'
back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
^
Conditionals_post.h:715: error: 'Y_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
#define MAX_PROBE_Y (min(Y_MAX_POS, Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin.h:297:39: note: in definition of macro 'LOGICAL_POSITION'
#define LOGICAL_POSITION(POS, AXIS) ((POS) + home_offset[AXIS] + position_shift[AXIS])
^
sketch\Marlin_main.cpp:3971:50: note: in expansion of macro 'LOGICAL_Y_POSITION'
back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
^
sketch\Conditionals_post.h:715:26: note: in expansion of macro 'min'
#define MAX_PROBE_Y (min(Y_MAX_POS, Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
^
sketch\Marlin_main.cpp:3971:69: note: in expansion of macro 'MAX_PROBE_Y'
back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
^
Marlin_main.cpp:3971: error: 'front_probe_bed_position' was not declared in this scope
back_probe_bed_position = back_out_b ? LOGICAL_Y_POSITION(MAX_PROBE_Y) : front_probe_bed_position + MIN_PROBE_EDGE;
^
Marlin_main.cpp:4007: error: 'right_probe_bed_position' was not declared in this scope
const float xGridSpacing = (right_probe_bed_position - left_probe_bed_position) / (abl_grid_points_x - 1),
^
Marlin_main.cpp:4016: error: 'yGridSpacing' was not declared in this scope
|| yGridSpacing != bilinear_grid_spacing[Y_AXIS]
^
Marlin_main.cpp:4018: error: 'front_probe_bed_position' was not declared in this scope
|| front_probe_bed_position != bilinear_start[Y_AXIS]
^
Marlin_main.cpp:4090: error: 'front_probe_bed_position' was not declared in this scope
yBase = front_probe_bed_position + yGridSpacing * yCount;
^
Marlin_main.cpp:4090: error: 'yGridSpacing' was not declared in this scope
yBase = front_probe_bed_position + yGridSpacing * yCount;
^
sketch\Marlin_main.cpp: In function 'void gcode_G30()':
Marlin_main.cpp:4411: error: 'X_PROBE_OFFSET_FROM_EXTRUDER' was not declared in this scope
float X_probe_location = code_seen('X') ? code_value_axis_units(X_AXIS) : current_position[X_AXIS] + X_PROBE_OFFSET_FROM_EXTRUDER,
^
Marlin_main.cpp:4414: error: 'Y_probe_location' was not declared in this scope
float pos[XYZ] = { X_probe_location, Y_probe_location, LOGICAL_Z_POSITION(0) };
^
exit status 1
'X_MIN_POS' was not declared in this scope
Dieser Bericht wäre detaillierter, wenn die Option
"Ausführliche Ausgabe während der Kompilierung"
in Datei -> Voreinstellungen aktiviert wäre.