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
4802e3df
Commit
4802e3df
authored
May 04, 2015
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Filrunout
parent
9d9893ae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
Configuration.h
MarlinKimbra/Configuration.h
+3
-3
Marlin_main.cpp
MarlinKimbra/Marlin_main.cpp
+1
-1
language.h
MarlinKimbra/language.h
+1
-1
No files found.
MarlinKimbra/Configuration.h
View file @
4802e3df
...
@@ -601,9 +601,9 @@ your extruder heater takes 2 minutes to hit the target on heating.
...
@@ -601,9 +601,9 @@ your extruder heater takes 2 minutes to hit the target on heating.
// It is assumed that when logic high = filament available
// It is assumed that when logic high = filament available
// when logic low = filament run out
// when logic low = filament run out
#ifdef FILAMENT_RUNOUT_SENSOR
#ifdef FILAMENT_RUNOUT_SENSOR
const
bool
FIL
_RUNOUT_INVERTING
=
true
;
// Should be uncommented and true or false should assigned
const
bool
FIL
RUNOUT_PIN_INVERTING
=
true
;
// Should be uncommented and true or false should assigned
#define ENDSTOPPULLUP_FIL_RUNOUT // Uncomment to use internal pullup for filament runout pins if the sensor is defined.
#define ENDSTOPPULLUP_FIL_RUNOUT
// Uncomment to use internal pullup for filament runout pins if the sensor is defined.
#define FILAMENT_RUNOUT_SCRIPT "M600" // Script execute when filament run out
#define FILAMENT_RUNOUT_SCRIPT "M600"
// Script execute when filament run out
#endif
#endif
//===========================================================================
//===========================================================================
...
...
MarlinKimbra/Marlin_main.cpp
View file @
4802e3df
...
@@ -6652,7 +6652,7 @@ void disable_all_steppers() {
...
@@ -6652,7 +6652,7 @@ void disable_all_steppers() {
void
manage_inactivity
(
bool
ignore_stepper_queue
/*=false*/
)
{
void
manage_inactivity
(
bool
ignore_stepper_queue
/*=false*/
)
{
#if HAS_FILRUNOUT
#if HAS_FILRUNOUT
if
((
printing
||
IS_SD_PRINTING
)
&&
(
READ
(
FILRUNOUT_PIN
)
^
FIL
_RUNOUT
_INVERTING
))
if
((
printing
||
IS_SD_PRINTING
)
&&
(
READ
(
FILRUNOUT_PIN
)
^
FIL
RUNOUT_PIN
_INVERTING
))
filrunout
();
filrunout
();
#endif
#endif
...
...
MarlinKimbra/language.h
View file @
4802e3df
...
@@ -142,7 +142,7 @@
...
@@ -142,7 +142,7 @@
#define MSG_HOTEND_OFFSET "Hotend offsets:"
#define MSG_HOTEND_OFFSET "Hotend offsets:"
#define MSG_EMPTY_PLANE "Autolevel can only be execute on an actual plane, make sure width and height are not 0!"
#define MSG_EMPTY_PLANE "Autolevel can only be execute on an actual plane, make sure width and height are not 0!"
#define MSG_ERR_MATERIAL_INDEX "M145 S<index> out of range (0-2)"
#define MSG_ERR_MATERIAL_INDEX "M145 S<index> out of range (0-2)"
#define MSG_FIL
AMENT_RUNOUT_PIN
"filament_runout_pin: "
#define MSG_FIL
RUNOUT_PIN
"filament_runout_pin: "
#define MSG_ERR_M428_TOO_FAR "Too far from reference point"
#define MSG_ERR_M428_TOO_FAR "Too far from reference point"
#define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
#define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
...
...
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