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
b0aad414
Unverified
Commit
b0aad414
authored
Jun 25, 2020
by
Pascal de Bruijn
Committed by
GitHub
Jun 25, 2020
Browse files
Options
Downloads
Patches
Plain Diff
Use Preheat 1 as M303 default (#18407)
parent
eb5f8b69
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/src/lcd/menu/menu_advanced.cpp
+7
-1
7 additions, 1 deletion
Marlin/src/lcd/menu/menu_advanced.cpp
with
7 additions
and
1 deletion
Marlin/src/lcd/menu/menu_advanced.cpp
+
7
−
1
View file @
b0aad414
...
@@ -169,7 +169,13 @@ void menu_cancelobject();
...
@@ -169,7 +169,13 @@ void menu_cancelobject();
#if ENABLED(PID_AUTOTUNE_MENU)
#if ENABLED(PID_AUTOTUNE_MENU)
#if ENABLED(PIDTEMP)
#if ENABLED(PIDTEMP)
int16_t
autotune_temp
[
HOTENDS
]
=
ARRAY_BY_HOTENDS1
(
150
);
#ifdef PREHEAT_1_TEMP_HOTEND
#define PID_TUNE_TEMP PREHEAT_1_TEMP_HOTEND
#else
#define PID_TUNE_TEMP 200
#endif
int16_t
autotune_temp
[
HOTENDS
]
=
ARRAY_BY_HOTENDS1
(
PID_TUNE_TEMP
);
#undef PID_TUNE_TEMP
#endif
#endif
#if ENABLED(PIDTEMPBED)
#if ENABLED(PIDTEMPBED)
...
...
...
...
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