MarlinDocumentation icon indicating copy to clipboard operation
MarlinDocumentation copied to clipboard

Update G042.md with P bool command

Open classicrocker883 opened this issue 10 months ago • 0 comments

G42 has this code

    #if HAS_PROBE_XY_OFFSET
      if (parser.boolval('P')) {
        if (hasI) destination.x -= probe.offset_xy.x;
        if (hasJ) destination.y -= probe.offset_xy.y;
      }
    #endif

so this documentation should be updated to include this bool type parameter.

classicrocker883 avatar Apr 28 '24 03:04 classicrocker883