I'm using an Ender 3 with a new upgraded board SKR 1.3 Marlin bugfix 2.0 auto bed leveling I use EZABL.
for the EZABL I followed their tutorial for Marlin 2.0 since I don't use the unified firmware.
Offset info :
#define NOZZLE_TO_PROBE_OFFSET { 50, -2, 0 }
#define MIN_PROBE_EDGE 20
I did try to follow this helpful guide
I don't know much about programming so when he said:
"As this is the part that defines the array values, you first need to make an array (note that this is a simple solution that many people should be able to understand with limited programming skills, more elegant solutions use the XYZ struct to access the X, Y or Z properties):"
constexpr int nozzle_to_probe_offset[] = NOZZLE_TO_PROBE_OFFSET;
#define PROBE_X_OFFSET_FROM_EXTRUDER nozzle_to_probe_offset[0]
#define PROBE_Y_OFFSET_FROM_EXTRUDER nozzle_to_probe_offset[1]
I don't understand where to put the lines above and what value to put.
update:
error message on compiling
Config.h : https://pastebin.com/w7CC5eaC
Config_adv.h : https://pastebin.com/qep34T1h