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
4f4b9507
Commit
4f4b9507
authored
Mar 08, 2015
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust M109 for SINGLENZOZZLE
parent
a7195a1f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
Configuration.h
MarlinKimbra/Configuration.h
+2
-2
Marlin_main.cpp
MarlinKimbra/Marlin_main.cpp
+6
-0
temperature.h
MarlinKimbra/temperature.h
+1
-3
No files found.
MarlinKimbra/Configuration.h
View file @
4f4b9507
...
...
@@ -80,11 +80,11 @@
*********************** Multiextruder MKR4 ***************************
***********************************************************************
* *
* Setting for more extruder width relay system
*
* Setting for more extruder width relay system *
* *
* Firmware by MagoKimbra magokimbra@hotmail.com *
* *
* See pins.h for pin command relay
*
* See pins.h for pin command relay *
* *
***********************************************************************/
//#define MKR4
...
...
MarlinKimbra/Marlin_main.cpp
View file @
4f4b9507
...
...
@@ -4400,6 +4400,9 @@ void process_commands()
{
if
(
setTargetedHotend
(
104
))
break
;
if
(
debugDryrun
())
break
;
#ifdef SINGLENOZZLE
if
(
tmp_extruder
!=
active_extruder
)
break
;
#endif
if
(
code_seen
(
'S'
))
setTargetHotend
(
code_value
(),
tmp_extruder
);
#ifdef DUAL_X_CARRIAGE
if
(
dual_x_carriage_mode
==
DXC_DUPLICATION_MODE
&&
tmp_extruder
==
0
)
...
...
@@ -4500,6 +4503,9 @@ void process_commands()
{
if
(
setTargetedHotend
(
109
))
break
;
if
(
debugDryrun
())
break
;
#ifdef SINGLENOZZLE
if
(
tmp_extruder
!=
active_extruder
)
break
;
#endif
LCD_MESSAGEPGM
(
MSG_HEATING
);
#ifdef AUTOTEMP
autotemp_enabled
=
false
;
...
...
MarlinKimbra/temperature.h
View file @
4f4b9507
...
...
@@ -125,9 +125,7 @@ FORCE_INLINE void setTargetHotend(const float &celsius, uint8_t extruder) {
#ifndef SINGLENOZZLE
target_temperature
[
extruder
]
=
celsius
;
#else
if
(
extruder
==
active_extruder
)
{
target_temperature
[
0
]
=
celsius
;
}
target_temperature
[
0
]
=
celsius
;
#endif
}
FORCE_INLINE
void
setTargetBed
(
const
float
&
celsius
)
{
target_temperature_bed
=
celsius
;
}
...
...
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