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
4eb71d1f
Commit
4eb71d1f
authored
9 years ago
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Same fix
parent
030bc2db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
Marlin_main.cpp
MarlinKimbra/Marlin_main.cpp
+2
-2
pins2tool.h
MarlinKimbra/pins2tool.h
+4
-1
ultralcd.cpp
MarlinKimbra/ultralcd.cpp
+1
-1
No files found.
MarlinKimbra/Marlin_main.cpp
View file @
4eb71d1f
...
...
@@ -2909,7 +2909,7 @@ inline void gcode_G28() {
// For auto bed leveling, clear the level matrix
#ifdef ENABLE_AUTO_BED_LEVELING
if
(
!
home_XY
)
plan_bed_level_matrix
.
set_to_identity
();
plan_bed_level_matrix
.
set_to_identity
();
#elif defined(DELTA)
reset_bed_level
();
#endif
...
...
@@ -5753,7 +5753,7 @@ inline void gcode_M503() {
inline
void
gcode_M666
()
{
if
(
code_seen
(
'P'
))
{
zprobe_zoffset
=
code_value
();
ECHO_LM
(
DB
,
MSG_ZPROBE_ZOFFSET
" "
OK
)
ECHO_LM
(
DB
,
MSG_ZPROBE_ZOFFSET
" "
OK
)
;
}
if
(
code_seen
(
'L'
))
{
ECHO_LMV
(
DB
,
"P (Z-Probe Offset):"
,
zprobe_zoffset
);
...
...
This diff is collapsed.
Click to expand it.
MarlinKimbra/pins2tool.h
View file @
4eb71d1f
...
...
@@ -45,7 +45,10 @@
//FAN pin
#define FAN_PIN ORIG_FAN_PIN
//============================================================================
//=========================== START YOUR CHANGE ==============================
// Example for change X_MIN_PIN
// #undef X_MIN_PIN
// #define X_MIN_PIN newpin
...
...
This diff is collapsed.
Click to expand it.
MarlinKimbra/ultralcd.cpp
View file @
4eb71d1f
...
...
@@ -977,7 +977,7 @@ static void lcd_control_menu() {
void
copy_and_scalePID_d_H2
()
{
copy_and_scalePID_d
(
2
);
}
#if HOTENDS > 3
void
copy_and_scalePID_i_H3
()
{
copy_and_scalePID_i
(
3
);
}
void
copy_and_scalePID_d_H
4
()
{
copy_and_scalePID_d
(
3
);
}
void
copy_and_scalePID_d_H
3
()
{
copy_and_scalePID_d
(
3
);
}
#endif //HOTENDS > 3
#endif //HOTENDS > 2
#endif //HOTENDS > 1
...
...
This diff is collapsed.
Click to expand it.
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