Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MarlinKimbra
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
MarlinKimbra
Commits
177b89ce
Commit
177b89ce
authored
Feb 02, 2015
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Marlin_main.cpp
parent
bb7bc19b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
Marlin_main.cpp
MarlinKimbra/Marlin_main.cpp
+5
-7
No files found.
MarlinKimbra/Marlin_main.cpp
View file @
177b89ce
...
...
@@ -3530,7 +3530,7 @@ void process_commands()
if
(
verbose_level
<
0
||
verbose_level
>
4
)
{
SERIAL_PROTOCOLPGM
(
"?Verbose Level not plausible.
\n
"
);
goto
Sigma_Exit
;
break
;
}
}
...
...
@@ -3546,7 +3546,7 @@ void process_commands()
if
(
n_samples
<
4
||
n_samples
>
50
)
{
SERIAL_PROTOCOLPGM
(
"?Specified sample size not plausable.
\n
"
);
goto
Sigma_Exit
;
break
;
}
}
...
...
@@ -3564,7 +3564,7 @@ void process_commands()
if
(
X_probe_location
<
X_MIN_POS
||
X_probe_location
>
X_MAX_POS
)
{
SERIAL_PROTOCOLPGM
(
"?Specified X position out of range.
\n
"
);
goto
Sigma_Exit
;
break
;
}
}
...
...
@@ -3574,7 +3574,7 @@ void process_commands()
if
(
Y_probe_location
<
Y_MIN_POS
||
Y_probe_location
>
Y_MAX_POS
)
{
SERIAL_PROTOCOLPGM
(
"?Specified Y position out of range.
\n
"
);
goto
Sigma_Exit
;
break
;
}
}
...
...
@@ -3585,7 +3585,7 @@ void process_commands()
if
(
n_legs
<
0
||
n_legs
>
15
)
{
SERIAL_PROTOCOLPGM
(
"?Specified number of legs in movement not plausible.
\n
"
);
goto
Sigma_Exit
;
break
;
}
}
...
...
@@ -3761,8 +3761,6 @@ void process_commands()
SERIAL_PROTOCOLPGM
(
"Standard Deviation: "
);
SERIAL_PROTOCOL_F
(
sigma
,
6
);
SERIAL_PROTOCOLPGM
(
"
\n\n
"
);
Sigma_Exit:
}
break
;
#endif //defined(ENABLE_AUTO_BED_LEVELING) && defined(Z_PROBE_REPEATABILITY_TEST)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment