Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
marlin-anet-a8
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
06c31daa
Commit
06c31daa
authored
Mar 19, 2017
by
Roxy-3D
Committed by
GitHub
Mar 19, 2017
Browse files
Options
Downloads
Plain Diff
Merge pull request #6070 from Roxy-3D/RCBugFix
Allow G29 P1 R to generate the mesh
parents
56c9dfc8
c377c59d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Marlin/UBL_G29.cpp
+5
-7
5 additions, 7 deletions
Marlin/UBL_G29.cpp
with
5 additions
and
7 deletions
Marlin/UBL_G29.cpp
+
5
−
7
View file @
06c31daa
...
@@ -1324,14 +1324,12 @@
...
@@ -1324,14 +1324,12 @@
mx
=
blm
.
map_x_index_to_bed_location
(
i
);
// Check if we can probe this mesh location
mx
=
blm
.
map_x_index_to_bed_location
(
i
);
// Check if we can probe this mesh location
my
=
blm
.
map_y_index_to_bed_location
(
j
);
my
=
blm
.
map_y_index_to_bed_location
(
j
);
// If we are using the probe as the reference
// If we are using the probe as the reference there are some locations we can't get to.
// there are some locations we can't get to.
// We prune these out of the list and ignore them until the next Phase where we do the
// We prune these out of the list and ignore
// them until the next Phase where we do the
// manual nozzle probing.
// manual nozzle probing.
if
(
probe_as_reference
&&
(
mx
<
(
MIN_PROBE_X
)
||
mx
>
(
MAX_PROBE_X
))
if
(
probe_as_reference
&&
&&
(
my
<
(
MIN_PROBE_Y
)
||
my
>
(
MAX_PROBE_Y
))
(
mx
<
(
MIN_PROBE_X
)
||
mx
>
(
MAX_PROBE_X
)
||
my
<
(
MIN_PROBE_Y
)
||
my
>
(
MAX_PROBE_Y
)
)
)
continue
;
)
continue
;
dx
=
px
-
mx
;
// We can get to it. Let's see if it is the
dx
=
px
-
mx
;
// We can get to it. Let's see if it is the
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment