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
ed3f6361
Commit
ed3f6361
authored
Mar 23, 2015
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Ultralcd.cpp
parent
7e99c935
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
ultralcd.cpp
MarlinKimbra/ultralcd.cpp
+8
-8
No files found.
MarlinKimbra/ultralcd.cpp
View file @
ed3f6361
...
...
@@ -1096,9 +1096,9 @@ static void lcd_control_motion_menu() {
START_MENU
();
MENU_ITEM
(
back
,
MSG_CONTROL
,
lcd_control_menu
);
#ifdef ENABLE_AUTO_BED_LEVELING
MENU_ITEM_EDIT
(
float32
,
MSG_ZPROBE_ZOFFSET
,
&
zprobe_zoffset
,
0.
5
,
50
);
MENU_ITEM_EDIT
(
float32
,
MSG_ZPROBE_ZOFFSET
,
&
zprobe_zoffset
,
0.
0
,
50
);
#endif
MENU_ITEM_EDIT
(
float5
,
MSG_ACC
,
&
acceleration
,
5
00
,
99000
);
MENU_ITEM_EDIT
(
float5
,
MSG_ACC
,
&
acceleration
,
1
00
,
99000
);
MENU_ITEM_EDIT
(
float3
,
MSG_VXY_JERK
,
&
max_xy_jerk
,
1
,
990
);
MENU_ITEM_EDIT
(
float52
,
MSG_VZ_JERK
,
&
max_z_jerk
,
0.1
,
990
);
MENU_ITEM_EDIT
(
float3
,
MSG_VE_JERK
,
&
max_e_jerk
,
1
,
990
);
...
...
@@ -1108,12 +1108,12 @@ static void lcd_control_motion_menu() {
MENU_ITEM_EDIT
(
float3
,
MSG_VMAX
MSG_E
,
&
max_feedrate
[
E_AXIS
],
1
,
999
);
MENU_ITEM_EDIT
(
float3
,
MSG_VMIN
,
&
minimumfeedrate
,
0
,
999
);
MENU_ITEM_EDIT
(
float3
,
MSG_VTRAV_MIN
,
&
mintravelfeedrate
,
0
,
999
);
MENU_ITEM_EDIT_CALLBACK
(
long5
,
MSG_AMAX
MSG_X
,
&
max_acceleration_units_per_sq_second
[
X_AXIS
],
10
0
,
99000
,
reset_acceleration_rates
);
MENU_ITEM_EDIT_CALLBACK
(
long5
,
MSG_AMAX
MSG_Y
,
&
max_acceleration_units_per_sq_second
[
Y_AXIS
],
10
0
,
99000
,
reset_acceleration_rates
);
MENU_ITEM_EDIT_CALLBACK
(
long5
,
MSG_AMAX
MSG_Z
,
&
max_acceleration_units_per_sq_second
[
Z_AXIS
],
10
0
,
99000
,
reset_acceleration_rates
);
MENU_ITEM_EDIT_CALLBACK
(
long5
,
MSG_AMAX
MSG_E
,
&
max_acceleration_units_per_sq_second
[
E_AXIS
],
10
0
,
99000
,
reset_acceleration_rates
);
MENU_ITEM_EDIT
(
float5
,
MSG_A_RETRACT
,
&
retract_acceleration
,
10
0
,
99000
);
MENU_ITEM_EDIT
(
float5
,
MSG_A_TRAVEL
,
&
travel_acceleration
,
10
0
,
99000
);
MENU_ITEM_EDIT_CALLBACK
(
long5
,
MSG_AMAX
MSG_X
,
&
max_acceleration_units_per_sq_second
[
X_AXIS
],
10
,
99000
,
reset_acceleration_rates
);
MENU_ITEM_EDIT_CALLBACK
(
long5
,
MSG_AMAX
MSG_Y
,
&
max_acceleration_units_per_sq_second
[
Y_AXIS
],
10
,
99000
,
reset_acceleration_rates
);
MENU_ITEM_EDIT_CALLBACK
(
long5
,
MSG_AMAX
MSG_Z
,
&
max_acceleration_units_per_sq_second
[
Z_AXIS
],
10
,
99000
,
reset_acceleration_rates
);
MENU_ITEM_EDIT_CALLBACK
(
long5
,
MSG_AMAX
MSG_E
,
&
max_acceleration_units_per_sq_second
[
E_AXIS
],
10
,
99000
,
reset_acceleration_rates
);
MENU_ITEM_EDIT
(
float5
,
MSG_A_RETRACT
,
&
retract_acceleration
,
10
,
99000
);
MENU_ITEM_EDIT
(
float5
,
MSG_A_TRAVEL
,
&
travel_acceleration
,
10
,
99000
);
MENU_ITEM_EDIT
(
float52
,
MSG_XSTEPS
,
&
axis_steps_per_unit
[
X_AXIS
],
5
,
9999
);
MENU_ITEM_EDIT
(
float52
,
MSG_YSTEPS
,
&
axis_steps_per_unit
[
Y_AXIS
],
5
,
9999
);
MENU_ITEM_EDIT
(
float51
,
MSG_ZSTEPS
,
&
axis_steps_per_unit
[
Z_AXIS
],
5
,
9999
);
...
...
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