Z_min_probe_uses_z_min_endstop_pin

I have this and another error coming up when I try to compile it.
I checked both errors and the endstop is “false” in both cases.
In the ‘park’ error neither is defined in the .adv.h.

This error isn’t about PlatformIO but about Marlin configuration.

Please check Marlin support

I was thinking that it may be the case, sivar, but there are two lines at the bottom that say ‘Error 1’ and they are from PlatformIO. I tried to look up those files but they are not showing in the tree as you can see in the picture on the left.

As far as I can see, this is a configuration error.

Marlin’s SanityCheck.h files exist to check the validity of settings and make sure obsolete settings get updated for the newest Marlin. Be sure to read and follow all directions provided by these checks.

Taken from Troubleshooting Tips | Marlin Firmware

/src/HAL/STM32F1/timers.cpp includes "../../inc/MarlinConfig.h" which inlcudes the "SanityCheck.h" where those two checks failed. Therefore, the timers.cpp cannot be compiled, which leads to the corresponding error message.

But maybe there is an incompatibility between the used platform version and marlin version. So the tip in section “PlatformIO Errors” from Marlin’s troubleshooting guide might also help.

Thanks, sivar. I’ll look into it at your link.