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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
bfbd976c
Commit
bfbd976c
authored
5 years ago
by
Scott Lahteine
Browse files
Options
Downloads
Patches
Plain Diff
General G76 cleanup
parent
a75a25cd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Marlin/src/gcode/calibrate/G76_M871.cpp
+25
-36
25 additions, 36 deletions
Marlin/src/gcode/calibrate/G76_M871.cpp
with
25 additions
and
36 deletions
Marlin/src/gcode/calibrate/G76_M871.cpp
+
25
−
36
View file @
bfbd976c
...
...
@@ -92,10 +92,8 @@ void GcodeSuite::G76() {
set_bltouch_deployed
(
false
);
#endif
bool
do_bed_cal
=
parser
.
boolval
(
'B'
),
do_probe_cal
=
parser
.
boolval
(
'P'
);
if
(
!
do_bed_cal
&&
!
do_probe_cal
)
do_bed_cal
=
do_probe_cal
=
true
;
bool
do_bed_cal
=
parser
.
boolval
(
'B'
),
do_probe_cal
=
parser
.
boolval
(
'P'
);
if
(
!
do_bed_cal
&&
!
do_probe_cal
)
do_bed_cal
=
do_probe_cal
=
true
;
// Synchronize with planner
planner
.
synchronize
();
...
...
@@ -133,10 +131,8 @@ void GcodeSuite::G76() {
uint16_t
target_bed
=
temp_comp
.
cali_info_init
[
TSI_BED
].
start_temp
,
target_probe
=
temp_comp
.
bed_calib_probe_temp
;
SERIAL_ECHOLNPGM
(
"Waiting for printer to cool down."
);
while
(
thermalManager
.
degBed
()
>
target_bed
||
thermalManager
.
degProbe
()
>
target_probe
)
{
SERIAL_ECHOLNPGM
(
"Waiting for cooling."
);
while
(
thermalManager
.
degBed
()
>
target_bed
||
thermalManager
.
degProbe
()
>
target_probe
)
{
idle_no_sleep
();
const
millis_t
ms
=
millis
();
if
(
ELAPSED
(
ms
,
next_temp_report
))
{
...
...
@@ -151,16 +147,16 @@ void GcodeSuite::G76() {
#endif
bool
timeout
=
false
;
while
(
true
)
{
for
(;;
)
{
thermalManager
.
setTargetBed
(
target_bed
);
SERIAL_ECHOLNPAIR
(
"Target Bed:
"
,
target_bed
,
"
;
Probe:
"
,
target_probe
);
SERIAL_ECHOLNPAIR
(
"Target Bed:"
,
target_bed
,
" Probe:"
,
target_probe
);
// Park nozzle
do_blocking_move_to
(
temp_comp
.
park_point_x
,
temp_comp
.
park_point_y
,
temp_comp
.
park_point_z
);
// Wait for heatbed to reach target temp and probe to cool below target temp
SERIAL_ECHOLNPGM
(
"Waiting for bed
and
probe to reach target
temp
."
);
SERIAL_ECHOLNPGM
(
"Waiting for bed
/
probe to reach target."
);
const
millis_t
probe_timeout_ms
=
millis
()
+
900UL
*
1000UL
;
while
(
fabs
(
thermalManager
.
degBed
()
-
float
(
target_bed
))
>
0.1
||
thermalManager
.
degProbe
()
>
target_probe
)
{
idle_no_sleep
();
...
...
@@ -179,7 +175,7 @@ void GcodeSuite::G76() {
if
(
timeout
)
break
;
// Move the nozzle to the probing point and wait for the probe to reach target temp
destination
.
set
(
temp_comp
.
measure_point_x
,
temp_comp
.
measure_point_y
,
0.5
);
destination
.
set
(
temp_comp
.
measure_point_x
,
temp_comp
.
measure_point_y
);
do_blocking_move_to
(
destination
);
SERIAL_ECHOLNPGM
(
"Waiting for probe heating."
);
while
(
thermalManager
.
degProbe
()
<
target_probe
)
{
...
...
@@ -197,15 +193,12 @@ void GcodeSuite::G76() {
// Do a single probe at the current position
remember_feedrate_scaling_off
();
const
float
measured_z
=
probe
.
probe_at_point
(
destination
.
x
+
probe
.
offset_xy
.
x
,
destination
.
y
+
probe
.
offset_xy
.
y
,
PROBE_PT_NONE
);
const
xy_pos_t
probe_xy
=
destination
+
probe
.
offset_xy
;
const
float
measured_z
=
probe
.
probe_at_point
(
probe_xy
,
PROBE_PT_NONE
);
restore_feedrate_and_scaling
();
if
(
isnan
(
measured_z
))
{
SERIAL_ECHOLNPGM
(
"!Received NAN
measurement - a
borting."
);
SERIAL_ECHOLNPGM
(
"!Received NAN
. A
borting."
);
break
;
}
else
...
...
@@ -224,7 +217,7 @@ void GcodeSuite::G76() {
if
(
temp_comp
.
finish_calibration
(
TSI_BED
))
SERIAL_ECHOLNPGM
(
"Successfully calibrated bed."
);
else
SERIAL_ECHOLNPGM
(
"!Failed to calibrate
d
bed
- reset calibration values
."
);
SERIAL_ECHOLNPGM
(
"!Failed to calibrate bed
. Values reset
."
);
// Cleanup
thermalManager
.
setTargetBed
(
0
);
...
...
@@ -243,9 +236,11 @@ void GcodeSuite::G76() {
do_blocking_move_to
(
temp_comp
.
park_point_x
,
temp_comp
.
park_point_y
,
temp_comp
.
park_point_z
);
// Initialize temperatures
uint16_t
target_bed
=
temp_comp
.
probe_calib_bed_temp
,
target_probe
=
temp_comp
.
cali_info_init
[
TSI_PROBE
].
start_temp
;
const
uint16_t
target_bed
=
temp_comp
.
probe_calib_bed_temp
;
thermalManager
.
setTargetBed
(
target_bed
);
uint16_t
target_probe
=
temp_comp
.
cali_info_init
[
TSI_PROBE
].
start_temp
;
SERIAL_ECHOLNPGM
(
"Waiting for bed and probe temperature."
);
while
(
fabs
(
thermalManager
.
degBed
()
-
float
(
target_bed
))
>
0.1
f
||
thermalManager
.
degProbe
()
>
target_probe
...
...
@@ -264,16 +259,12 @@ void GcodeSuite::G76() {
#endif
bool
timeout
=
false
;
while
(
true
)
{
for
(;;
)
{
// Move probe to probing point and wait for it to reach target temperature
destination
.
set
(
temp_comp
.
measure_point_x
,
temp_comp
.
measure_point_y
,
0.5
);
destination
.
set
(
temp_comp
.
measure_point_x
,
temp_comp
.
measure_point_y
);
do_blocking_move_to
(
destination
);
SERIAL_ECHOLNPAIR
(
"Bed temp: "
,
target_bed
,
"; Probe temp: "
,
target_probe
,
" Waiting for probe heating."
);
SERIAL_ECHOLNPAIR
(
"Waiting for probe heating. Bed:"
,
target_bed
,
" Probe:"
,
target_probe
);
const
millis_t
probe_timeout_ms
=
millis
()
+
900UL
*
1000UL
;
while
(
thermalManager
.
degProbe
()
<
target_probe
)
{
...
...
@@ -284,7 +275,7 @@ void GcodeSuite::G76() {
next_temp_report
=
ms
+
1000
;
}
if
(
ELAPSED
(
ms
,
probe_timeout_ms
))
{
SERIAL_ECHOLNPGM
(
"!Probe heating
aborted due to
timeout."
);
SERIAL_ECHOLNPGM
(
"!Probe heating time
d
out."
);
timeout
=
true
;
break
;
}
...
...
@@ -298,11 +289,8 @@ void GcodeSuite::G76() {
// Do a single probe
remember_feedrate_scaling_off
();
const
float
measured_z
=
probe
.
probe_at_point
(
destination
.
x
+
probe
.
offset_xy
.
x
,
destination
.
y
+
probe
.
offset_xy
.
y
,
PROBE_PT_NONE
);
const
xy_pos_t
probe_xy
=
destination
+
probe
.
offset_xy
;
const
float
measured_z
=
probe
.
probe_at_point
(
probe_xy
,
PROBE_PT_NONE
);
restore_feedrate_and_scaling
();
if
(
isnan
(
measured_z
))
{
...
...
@@ -323,9 +311,10 @@ void GcodeSuite::G76() {
SERIAL_ECHOLNPAIR
(
"Retrieved measurements: "
,
temp_comp
.
get_index
());
if
(
temp_comp
.
finish_calibration
(
TSI_PROBE
))
SERIAL_ECHO
LN
PGM
(
"Successfully calibrated
probe.
"
);
SERIAL_ECHOPGM
(
"Successfully calibrated"
);
else
SERIAL_ECHOLNPGM
(
"!Failed to calibrated probe."
);
SERIAL_ECHOPGM
(
"!Failed to calibrate"
);
SERIAL_ECHOLNPGM
(
" probe."
);
// Cleanup
thermalManager
.
setTargetBed
(
0
);
...
...
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