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
e20f673d
Commit
e20f673d
authored
Dec 19, 2014
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix
parent
c1c7e9ae
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
42 additions
and
42 deletions
+42
-42
ConfigurationStore.cpp
MarlinKimbra/ConfigurationStore.cpp
+10
-10
Configuration_Cartesian.h
MarlinKimbra/Configuration_Cartesian.h
+2
-2
Marlin_main.cpp
MarlinKimbra/Marlin_main.cpp
+2
-11
temperature.h
MarlinKimbra/temperature.h
+25
-17
ultralcd.h
MarlinKimbra/ultralcd.h
+3
-2
No files found.
MarlinKimbra/ConfigurationStore.cpp
View file @
e20f673d
...
...
@@ -147,9 +147,9 @@ void Config_PrintSettings()
#endif
SERIAL_ECHOLNPGM
(
"Maximum feedrates (mm/s):"
);
SERIAL_ECHO_START
;
SERIAL_ECHOPAIR
(
" M203 X"
,
max_feedrate
[
0
]);
SERIAL_ECHOPAIR
(
" Y"
,
max_feedrate
[
1
]
);
SERIAL_ECHOPAIR
(
" Z"
,
max_feedrate
[
2
]
);
SERIAL_ECHOPAIR
(
" M203 X
"
,
max_feedrate
[
0
]);
SERIAL_ECHOPAIR
(
" Y
"
,
max_feedrate
[
1
]
);
SERIAL_ECHOPAIR
(
" Z
"
,
max_feedrate
[
2
]
);
SERIAL_ECHOPAIR
(
" E0 "
,
max_feedrate
[
3
]);
SERIAL_ECHOPAIR
(
" E1 "
,
max_feedrate
[
4
]);
SERIAL_ECHOPAIR
(
" E2 "
,
max_feedrate
[
5
]);
...
...
@@ -168,13 +168,13 @@ void Config_PrintSettings()
SERIAL_ECHO_START
;
SERIAL_ECHOLNPGM
(
"Maximum Acceleration (mm/s2):"
);
SERIAL_ECHO_START
;
SERIAL_ECHOPAIR
(
" M201 X"
,
max_acceleration_units_per_sq_second
[
0
]
);
SERIAL_ECHOPAIR
(
" Y"
,
max_acceleration_units_per_sq_second
[
1
]
);
SERIAL_ECHOPAIR
(
" Z"
,
max_acceleration_units_per_sq_second
[
2
]
);
SERIAL_ECHOPAIR
(
" E0"
,
max_acceleration_units_per_sq_second
[
3
]);
SERIAL_ECHOPAIR
(
" E1"
,
max_acceleration_units_per_sq_second
[
4
]);
SERIAL_ECHOPAIR
(
" E2"
,
max_acceleration_units_per_sq_second
[
5
]);
SERIAL_ECHOPAIR
(
" E3"
,
max_acceleration_units_per_sq_second
[
6
]);
SERIAL_ECHOPAIR
(
" M201 X
"
,
max_acceleration_units_per_sq_second
[
0
]
);
SERIAL_ECHOPAIR
(
" Y
"
,
max_acceleration_units_per_sq_second
[
1
]
);
SERIAL_ECHOPAIR
(
" Z
"
,
max_acceleration_units_per_sq_second
[
2
]
);
SERIAL_ECHOPAIR
(
" E0
"
,
max_acceleration_units_per_sq_second
[
3
]);
SERIAL_ECHOPAIR
(
" E1
"
,
max_acceleration_units_per_sq_second
[
4
]);
SERIAL_ECHOPAIR
(
" E2
"
,
max_acceleration_units_per_sq_second
[
5
]);
SERIAL_ECHOPAIR
(
" E3
"
,
max_acceleration_units_per_sq_second
[
6
]);
SERIAL_ECHOLN
(
""
);
SERIAL_ECHO_START
;
...
...
MarlinKimbra/Configuration_Cartesian.h
View file @
e20f673d
...
...
@@ -143,7 +143,7 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the lo
// these are the offsets to the probe relative to the extruder tip (Hotend - Probe)
#define X_PROBE_OFFSET_FROM_EXTRUDER 0
#define Y_PROBE_OFFSET_FROM_EXTRUDER 20
#define Z_PROBE_OFFSET_FROM_EXTRUDER -3.7
0
#define Z_PROBE_OFFSET_FROM_EXTRUDER -3.7
5
#define Z_RAISE_BEFORE_HOMING 10 // (in mm) Raise Z before homing (G28) for Probe Clearance.
// Be sure you have this distance over your Z_MAX_POS in case
...
...
MarlinKimbra/Marlin_main.cpp
View file @
e20f673d
...
...
@@ -826,13 +826,7 @@ void get_command()
case
1
:
case
2
:
case
3
:
if
(
Stopped
==
false
)
{
// If printer is stopped by an error the G[0-3] codes are ignored.
#ifdef SDSUPPORT
if
(
card
.
saving
)
break
;
#endif //SDSUPPORT
SERIAL_PROTOCOLLNPGM
(
MSG_OK
);
}
else
{
if
(
Stopped
==
true
)
{
SERIAL_ERRORLNPGM
(
MSG_ERR_STOPPED
);
LCD_MESSAGEPGM
(
MSG_STOPPED
);
}
...
...
@@ -1900,7 +1894,6 @@ void process_commands()
#endif //FWRETRACT
prepare_move
();
//ClearToSend();
return
;
}
break
;
...
...
@@ -1909,14 +1902,12 @@ void process_commands()
if
(
Stopped
==
false
)
{
get_arc_coordinates
();
prepare_arc_move
(
true
);
return
;
}
break
;
case
3
:
// G3 - CCW ARC
if
(
Stopped
==
false
)
{
get_arc_coordinates
();
prepare_arc_move
(
false
);
return
;
}
break
;
#endif // no SCARA
...
...
MarlinKimbra/temperature.h
View file @
e20f673d
...
...
@@ -16,7 +16,7 @@
You should have received a copy of the GNU General Public License
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#ifndef temperature_h
#define temperature_h
...
...
@@ -31,6 +31,14 @@
void
tp_init
();
//initialize the heating
void
manage_heater
();
//it is critical that this is called periodically.
#ifdef FILAMENT_SENSOR
// For converting raw Filament Width to milimeters
float
analog2widthFil
();
// For converting raw Filament Width to an extrusion ratio
int
widthFil_to_size_ratio
();
#endif
// low level conversion routines
// do not use these routines and variables outside of temperature.cpp
#ifndef SINGLENOZZLE
...
...
MarlinKimbra/ultralcd.h
View file @
e20f673d
...
...
@@ -109,7 +109,8 @@
#define LCD_MESSAGEPGM(x)
#define LCD_ALERTMESSAGEPGM(x)
#endif
#endif //ULTRA_LCD
char
*
itostr2
(
const
uint8_t
&
x
);
char
*
itostr31
(
const
int
&
xx
);
...
...
@@ -130,4 +131,4 @@ char *ftostr5(const float &x);
char
*
ftostr51
(
const
float
&
x
);
char
*
ftostr52
(
const
float
&
x
);
#endif //ULTRALCD
#endif //ULTRALCD
_H
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