Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement G60 / G61 to meet spec #27281

Merged
merged 16 commits into from
Jul 26, 2024

Commits on May 31, 2024

  1. Fix No Integer restore in G61

    This Fixes the case where no Integers were specified on the G61 command:
    ```
    G60
    G0 X100 Y100 Z20
    G61 X Y  
    ```
    does not return to the last location as :
    ```
    G60
    G0 X100 Y100 Z20
    G61 X0 Y0
    ```
    does.  this matches what the spec says:
    https://marlinfw.org/docs/gcode/G061.html
    which does not even document you can put an integer after the axis letters.
    karcaw authored May 31, 2024
    Configuration menu
    Copy the full SHA
    591a798 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

  1. G60 Q, etc.

    thinkyhead committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    e75f3a6 View commit details
    Browse the repository at this point in the history
  2. …and…

    thinkyhead committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    f8f590f View commit details
    Browse the repository at this point in the history
  3. …etc…

    thinkyhead committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    570ec1f View commit details
    Browse the repository at this point in the history
  4. help hosts

    thinkyhead committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    29faabe View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2024

  1. Parity with wiki

    thinkyhead committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    fda089c View commit details
    Browse the repository at this point in the history
  2. unlimited flags

    thinkyhead committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    b3ead0a View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. optimal specialization

    thinkyhead committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    4bc093f View commit details
    Browse the repository at this point in the history
  2. more bits

    thinkyhead committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    fc4cee2 View commit details
    Browse the repository at this point in the history
  3. test more bits

    thinkyhead committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    0917de4 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. sleep

    thinkyhead committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    de2ff5e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b51dec8 View commit details
    Browse the repository at this point in the history
  3. better

    thinkyhead committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    b9ad23f View commit details
    Browse the repository at this point in the history
  4. update set/clear

    thinkyhead committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    58f592a View commit details
    Browse the repository at this point in the history
  5. report on save

    thinkyhead committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    3ac3712 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. Configuration menu
    Copy the full SHA
    1555863 View commit details
    Browse the repository at this point in the history