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

Change G27 to allow Z raise if homing needed #26789

Open
wants to merge 37 commits into
base: bugfix-2.1.x
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
625c9fe
change G27 to allow Z raise !homing
classicrocker883 Feb 12, 2024
ccf7596
update to unsigned, change to ushortval
classicrocker883 Feb 14, 2024
b3deb2e
update with less wording
classicrocker883 Feb 14, 2024
f635d03
update caselight_uses_brightness, add apply
classicrocker883 Feb 14, 2024
1ef60d7
Update dwin.cpp, revert caselight
classicrocker883 Feb 21, 2024
a58dd37
amend duration_t.h, millis_t/with_days
classicrocker883 Feb 21, 2024
aad3289
revert
classicrocker883 Feb 21, 2024
edb92fa
ftdi_eve compat.h, IF_DISABLED => TERN
classicrocker883 Feb 21, 2024
023ed44
ENDSTOP_INTERRUPTS_FEATURE now enabled in FT_MOTION stepper.cpp
classicrocker883 Feb 22, 2024
774446e
if defined - report_real_position
classicrocker883 Feb 28, 2024
9c8d9f2
append G27 to include switch case
classicrocker883 Feb 29, 2024
9c023bc
arrange macros.h (intellisense)
classicrocker883 Mar 3, 2024
8a7b8fb
update bltouch spacing/comments
classicrocker883 Mar 5, 2024
a623c78
update probe spacing/comments
classicrocker883 Mar 5, 2024
314dad5
tweak bltouch spacing
classicrocker883 Mar 6, 2024
650aacd
Merge branch 'bugfix-2.1.x' of https://github.com/MarlinFirmware/Marl…
classicrocker883 Mar 14, 2024
922f597
Update stepper.cpp - update anyway
classicrocker883 Mar 21, 2024
db064be
Merge branch 'bugfix-2.1.x' of https://github.com/MarlinFirmware/Marl…
classicrocker883 Apr 6, 2024
7c984ac
Merge branch 'bugfix-2.1.x' of https://github.com/MarlinFirmware/Marl…
classicrocker883 Apr 6, 2024
f8115b8
Merge branch 'bugfix-2.1.x-Feb' of https://github.com/classicrocker88…
classicrocker883 Apr 6, 2024
4e3ba2d
Merge branch 'bugfix-2.1.x' of https://github.com/MarlinFirmware/Marl…
classicrocker883 Apr 14, 2024
05d0659
revert files but pause/G27.cpp
classicrocker883 Apr 14, 2024
bbbe54b
Update G27.cpp, add G27_BYPASS_TRUST
classicrocker883 Apr 20, 2024
0e4c955
Update Configuration.h w/ G27_BYPASS_TRUST under NOZZLE_PARK_FEATURE
classicrocker883 Apr 20, 2024
b47a445
Disabled by default
thisiskeithb Apr 27, 2024
de76fb5
add to sanitycheck
classicrocker883 May 5, 2024
5b31beb
Merge branch 'bugfix-2.1.x' of https://github.com/MarlinFirmware/Marl…
classicrocker883 May 22, 2024
929a73b
Update SanityCheck.h
classicrocker883 May 22, 2024
1c25bdf
Update SanityCheck.h
classicrocker883 May 22, 2024
a295be5
Update SanityCheck.h rearrange
classicrocker883 May 22, 2024
c024a81
Update SanityCheck.h
classicrocker883 May 22, 2024
98c33f6
revert SanityCheck.h
classicrocker883 May 29, 2024
3c82178
Update G27.cpp comments
classicrocker883 May 30, 2024
f7b1e7e
Merge https://github.com/MarlinFirmware/Marlin into bugfix-2.1.x-Feb
classicrocker883 Jun 27, 2024
4fa8570
Merge https://github.com/MarlinFirmware/Marlin into bugfix-2.1.x-Feb
classicrocker883 Aug 2, 2024
e6c5f03
Merge branch 'bugfix-2.1.x' of https://github.com/MarlinFirmware/Marl…
classicrocker883 Oct 21, 2024
00d2427
Merge branch 'bugfix-2.1.x' of https://github.com/MarlinFirmware/Marl…
classicrocker883 Nov 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ENDSTOP_INTERRUPTS_FEATURE now enabled in FT_MOTION stepper.cpp
classicrocker883 committed Feb 22, 2024

Verified

This commit was signed with the committer’s verified signature.
commit 023ed445828882f66dd1555239e97bdd72dcbe33
2 changes: 1 addition & 1 deletion Marlin/src/module/stepper.cpp
Original file line number Diff line number Diff line change
@@ -3531,7 +3531,7 @@ void Stepper::report_positions() {
);

// Check endstops on every step
IF_DISABLED(ENDSTOP_INTERRUPTS_FEATURE, endstops.update());
TERN_(ENDSTOP_INTERRUPTS_FEATURE, endstops.update());

// Also handle babystepping here
TERN_(BABYSTEPPING, if (babystep.has_steps()) babystepping_isr());