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
2efb5870
Commit
2efb5870
authored
Jan 01, 2015
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Same fix
parent
820e16e5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
Marlin_main.cpp
MarlinKimbra/Marlin_main.cpp
+15
-15
temperature.cpp
MarlinKimbra/temperature.cpp
+1
-1
No files found.
MarlinKimbra/Marlin_main.cpp
View file @
2efb5870
...
@@ -1205,7 +1205,7 @@ static void setup_for_endstop_move() {
...
@@ -1205,7 +1205,7 @@ static void setup_for_endstop_move() {
saved_feedrate
=
feedrate
;
saved_feedrate
=
feedrate
;
saved_feedmultiply
=
feedmultiply
;
saved_feedmultiply
=
feedmultiply
;
feedmultiply
=
100
;
feedmultiply
=
100
;
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
enable_endstops
(
true
);
enable_endstops
(
true
);
}
}
...
@@ -1217,7 +1217,7 @@ static void clean_up_after_endstop_move() {
...
@@ -1217,7 +1217,7 @@ static void clean_up_after_endstop_move() {
feedrate
=
saved_feedrate
;
feedrate
=
saved_feedrate
;
feedmultiply
=
saved_feedmultiply
;
feedmultiply
=
saved_feedmultiply
;
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
}
}
static
void
engage_z_probe
()
{
static
void
engage_z_probe
()
{
...
@@ -1741,7 +1741,7 @@ void home_delta_axis()
...
@@ -1741,7 +1741,7 @@ void home_delta_axis()
saved_feedrate
=
feedrate
;
saved_feedrate
=
feedrate
;
saved_feedmultiply
=
feedmultiply
;
saved_feedmultiply
=
feedmultiply
;
feedmultiply
=
100
;
feedmultiply
=
100
;
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
enable_endstops
(
true
);
enable_endstops
(
true
);
...
@@ -1781,13 +1781,13 @@ void home_delta_axis()
...
@@ -1781,13 +1781,13 @@ void home_delta_axis()
feedrate
=
saved_feedrate
;
feedrate
=
saved_feedrate
;
feedmultiply
=
saved_feedmultiply
;
feedmultiply
=
saved_feedmultiply
;
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
endstops_hit_on_purpose
();
endstops_hit_on_purpose
();
}
}
void
prepare_move_raw
()
void
prepare_move_raw
()
{
{
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
calculate_delta
(
destination
);
calculate_delta
(
destination
);
plan_buffer_line
(
delta
[
X_AXIS
],
delta
[
Y_AXIS
],
delta
[
Z_AXIS
],
plan_buffer_line
(
delta
[
X_AXIS
],
delta
[
Y_AXIS
],
delta
[
Z_AXIS
],
destination
[
E_AXIS
],
feedrate
*
feedmultiply
/
60
/
100.0
,
destination
[
E_AXIS
],
feedrate
*
feedmultiply
/
60
/
100.0
,
...
@@ -1949,7 +1949,7 @@ void process_commands()
...
@@ -1949,7 +1949,7 @@ void process_commands()
st_synchronize
();
st_synchronize
();
codenum
+=
millis
();
// keep track of when we started waiting
codenum
+=
millis
();
// keep track of when we started waiting
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
while
(
millis
()
<
codenum
)
{
while
(
millis
()
<
codenum
)
{
manage_heater
();
manage_heater
();
manage_inactivity
();
manage_inactivity
();
...
@@ -1983,7 +1983,7 @@ void process_commands()
...
@@ -1983,7 +1983,7 @@ void process_commands()
saved_feedrate
=
feedrate
;
saved_feedrate
=
feedrate
;
saved_feedmultiply
=
feedmultiply
;
saved_feedmultiply
=
feedmultiply
;
feedmultiply
=
100
;
feedmultiply
=
100
;
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
enable_endstops
(
true
);
enable_endstops
(
true
);
...
@@ -2277,7 +2277,7 @@ void process_commands()
...
@@ -2277,7 +2277,7 @@ void process_commands()
feedrate
=
saved_feedrate
;
feedrate
=
saved_feedrate
;
feedmultiply
=
saved_feedmultiply
;
feedmultiply
=
saved_feedmultiply
;
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
endstops_hit_on_purpose
();
endstops_hit_on_purpose
();
break
;
break
;
...
@@ -2530,7 +2530,7 @@ void process_commands()
...
@@ -2530,7 +2530,7 @@ void process_commands()
feedrate
=
saved_feedrate
;
feedrate
=
saved_feedrate
;
feedmultiply
=
saved_feedmultiply
;
feedmultiply
=
saved_feedmultiply
;
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
endstops_hit_on_purpose
();
endstops_hit_on_purpose
();
break
;
break
;
...
@@ -3090,7 +3090,7 @@ void process_commands()
...
@@ -3090,7 +3090,7 @@ void process_commands()
lcd_ignore_click
();
lcd_ignore_click
();
st_synchronize
();
st_synchronize
();
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
if
(
codenum
>
0
){
if
(
codenum
>
0
){
codenum
+=
millis
();
// keep track of when we started waiting
codenum
+=
millis
();
// keep track of when we started waiting
while
(
millis
()
<
codenum
&&
!
lcd_clicked
())
{
while
(
millis
()
<
codenum
&&
!
lcd_clicked
())
{
...
@@ -3728,7 +3728,7 @@ Sigma_Exit:
...
@@ -3728,7 +3728,7 @@ Sigma_Exit:
}
}
LCD_MESSAGEPGM
(
MSG_HEATING_COMPLETE
);
LCD_MESSAGEPGM
(
MSG_HEATING_COMPLETE
);
starttime
=
millis
();
starttime
=
millis
();
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
}
}
break
;
break
;
case
190
:
// M190 - Wait for bed heater to reach target.
case
190
:
// M190 - Wait for bed heater to reach target.
...
@@ -3767,7 +3767,7 @@ Sigma_Exit:
...
@@ -3767,7 +3767,7 @@ Sigma_Exit:
lcd_update
();
lcd_update
();
}
}
LCD_MESSAGEPGM
(
MSG_BED_DONE
);
LCD_MESSAGEPGM
(
MSG_BED_DONE
);
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
#endif
#endif
break
;
break
;
...
@@ -5310,7 +5310,7 @@ void FlushSerialRequestResend()
...
@@ -5310,7 +5310,7 @@ void FlushSerialRequestResend()
void
ClearToSend
()
void
ClearToSend
()
{
{
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
#ifdef SDSUPPORT
#ifdef SDSUPPORT
if
(
fromsd
[
bufindr
])
if
(
fromsd
[
bufindr
])
return
;
return
;
...
@@ -5466,7 +5466,7 @@ void adjust_delta(float cartesian[3])
...
@@ -5466,7 +5466,7 @@ void adjust_delta(float cartesian[3])
void
prepare_move
()
void
prepare_move
()
{
{
clamp_to_software_endstops
(
destination
);
clamp_to_software_endstops
(
destination
);
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
#ifdef SCARA //for now same as delta-code
#ifdef SCARA //for now same as delta-code
float
difference
[
NUM_AXIS
];
float
difference
[
NUM_AXIS
];
...
@@ -5620,7 +5620,7 @@ void prepare_arc_move(char isclockwise)
...
@@ -5620,7 +5620,7 @@ void prepare_arc_move(char isclockwise)
for
(
int8_t
i
=
0
;
i
<
NUM_AXIS
;
i
++
)
{
for
(
int8_t
i
=
0
;
i
<
NUM_AXIS
;
i
++
)
{
current_position
[
i
]
=
destination
[
i
];
current_position
[
i
]
=
destination
[
i
];
}
}
previous_millis_cmd
=
millis
();
refresh_cmd_timeout
();
}
}
#if defined(CONTROLLERFAN_PIN) && CONTROLLERFAN_PIN > -1
#if defined(CONTROLLERFAN_PIN) && CONTROLLERFAN_PIN > -1
...
...
MarlinKimbra/temperature.cpp
View file @
2efb5870
...
@@ -663,7 +663,7 @@ void manage_heater()
...
@@ -663,7 +663,7 @@ void manage_heater()
temp_dState_bed
=
pid_input
;
temp_dState_bed
=
pid_input
;
pid_output
=
pTerm_bed
+
iTerm_bed
-
dTerm_bed
;
pid_output
=
pTerm_bed
+
iTerm_bed
-
dTerm_bed
;
if
(
pid_output
>
MAX_BED_PID
)
{
if
(
pid_output
>
PID_MAX
)
{
if
(
pid_error_bed
>
0
)
temp_iState_bed
-=
pid_error_bed
;
// conditional un-integration
if
(
pid_error_bed
>
0
)
temp_iState_bed
-=
pid_error_bed
;
// conditional un-integration
pid_output
=
PID_MAX
;
pid_output
=
PID_MAX
;
}
else
if
(
pid_output
<
0
){
}
else
if
(
pid_output
<
0
){
...
...
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