I am trying to enable delta autocalibration but it gives me an error in marlin_main.cpp around line 5678. I am running the latest marlin 1.1.9 freshly downloaded. This is the error:
This is the marlin_main.cpp line that causes the error:
The error says lcd_probe_pt is undefined but it is defined a little before, here
that variable is also called a few lines before the error and it seems to be ok. I am not fluent in C++ so I can't tell what the problem is but it seems like a simple typo from the developers to me.
Any insight on the error will be appreciated.
sketch/Marlin_main.cpp:5678: undefined reference tolcd_probe_pt(float const&, float const&)'
This is the marlin_main.cpp line that causes the error:
float z_shift = lcd_probe_pt(0, 0) - center;
The error says lcd_probe_pt is undefined but it is defined a little before, here
float lcd_probe_pt(const float &rx, const float &ry);
that variable is also called a few lines before the error and it seems to be ok. I am not fluent in C++ so I can't tell what the problem is but it seems like a simple typo from the developers to me.
Any insight on the error will be appreciated.