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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
929a513a
Unverified
Commit
929a513a
authored
6 years ago
by
Scott Lahteine
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add poll_runout_states, which returns 1 for runouts (#12547)
parent
01b5c810
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Marlin/src/feature/runout.h
+23
-18
23 additions, 18 deletions
Marlin/src/feature/runout.h
with
23 additions
and
18 deletions
Marlin/src/feature/runout.h
+
23
−
18
View file @
929a513a
...
@@ -111,7 +111,7 @@ class FilamentSensorBase {
...
@@ -111,7 +111,7 @@ class FilamentSensorBase {
static
void
filament_present
(
const
uint8_t
extruder
);
static
void
filament_present
(
const
uint8_t
extruder
);
public:
public:
static
void
setup
()
{
static
inline
void
setup
()
{
#if ENABLED(FIL_RUNOUT_PULLUP)
#if ENABLED(FIL_RUNOUT_PULLUP)
#define INIT_RUNOUT_PIN(P) SET_INPUT_PULLUP(P)
#define INIT_RUNOUT_PIN(P) SET_INPUT_PULLUP(P)
#elif ENABLED(FIL_RUNOUT_PULLDOWN)
#elif ENABLED(FIL_RUNOUT_PULLDOWN)
...
@@ -138,14 +138,8 @@ class FilamentSensorBase {
...
@@ -138,14 +138,8 @@ class FilamentSensorBase {
#endif
#endif
}
}
#if FIL_RUNOUT_INVERTING
// Return a bitmask of runout pin states
#define FIL_RUNOUT_INVERT_MASK (_BV(NUM_RUNOUT_SENSORS) - 1)
static
inline
uint8_t
poll_runout_pins
()
{
#else
#define FIL_RUNOUT_INVERT_MASK 0
#endif
// Return a bitmask of all runout sensor states
static
uint8_t
poll_runout_pins
()
{
return
(
return
(
(
READ
(
FIL_RUNOUT_PIN
)
?
_BV
(
0
)
:
0
)
(
READ
(
FIL_RUNOUT_PIN
)
?
_BV
(
0
)
:
0
)
#if NUM_RUNOUT_SENSORS > 1
#if NUM_RUNOUT_SENSORS > 1
...
@@ -163,7 +157,18 @@ class FilamentSensorBase {
...
@@ -163,7 +157,18 @@ class FilamentSensorBase {
#endif
#endif
#endif
#endif
#endif
#endif
)
^
FIL_RUNOUT_INVERT_MASK
;
);
}
// Return a bitmask of runout flag states (1 bits always indicates runout)
static
inline
uint8_t
poll_runout_states
()
{
return
poll_runout_pins
()
^
uint8_t
(
#if DISABLED(FIL_RUNOUT_INVERTING)
_BV
(
NUM_RUNOUT_SENSORS
)
-
1
#else
0
#endif
);
}
}
};
};
...
@@ -219,22 +224,22 @@ class FilamentSensorBase {
...
@@ -219,22 +224,22 @@ class FilamentSensorBase {
*/
*/
class
FilamentSensorSwitch
:
public
FilamentSensorBase
{
class
FilamentSensorSwitch
:
public
FilamentSensorBase
{
private:
private:
static
bool
poll_runout_
pin
(
const
uint8_t
extruder
)
{
static
inline
bool
poll_runout_
state
(
const
uint8_t
extruder
)
{
const
uint8_t
runout_
bit
s
=
poll_runout_
pin
s
();
const
uint8_t
runout_
state
s
=
poll_runout_
state
s
();
#if NUM_RUNOUT_SENSORS == 1
#if NUM_RUNOUT_SENSORS == 1
UNUSED
(
extruder
);
UNUSED
(
extruder
);
return
runout_
bit
s
;
// A single sensor applying to all extruders
return
runout_
state
s
;
// A single sensor applying to all extruders
#else
#else
#if ENABLED(DUAL_X_CARRIAGE)
#if ENABLED(DUAL_X_CARRIAGE)
if
(
dual_x_carriage_mode
==
DXC_DUPLICATION_MODE
||
dual_x_carriage_mode
==
DXC_SCALED_DUPLICATION_MODE
)
if
(
dual_x_carriage_mode
==
DXC_DUPLICATION_MODE
||
dual_x_carriage_mode
==
DXC_SCALED_DUPLICATION_MODE
)
return
runout_
bit
s
;
// Any extruder
return
runout_
state
s
;
// Any extruder
else
else
#elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
#elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
if
(
extruder_duplication_enabled
)
if
(
extruder_duplication_enabled
)
return
runout_
bit
s
;
// Any extruder
return
runout_
state
s
;
// Any extruder
else
else
#endif
#endif
return
TEST
(
runout_
bit
s
,
extruder
);
// Specific extruder
return
TEST
(
runout_
state
s
,
extruder
);
// Specific extruder
#endif
#endif
}
}
...
@@ -242,7 +247,7 @@ class FilamentSensorBase {
...
@@ -242,7 +247,7 @@ class FilamentSensorBase {
static
inline
void
block_completed
(
const
block_t
*
const
b
)
{
UNUSED
(
b
);
}
static
inline
void
block_completed
(
const
block_t
*
const
b
)
{
UNUSED
(
b
);
}
static
inline
void
run
()
{
static
inline
void
run
()
{
const
bool
out
=
poll_runout_
pin
(
active_extruder
);
const
bool
out
=
poll_runout_
state
(
active_extruder
);
if
(
!
out
)
filament_present
(
active_extruder
);
if
(
!
out
)
filament_present
(
active_extruder
);
#ifdef FILAMENT_RUNOUT_SENSOR_DEBUG
#ifdef FILAMENT_RUNOUT_SENSOR_DEBUG
static
bool
was_out
=
false
;
static
bool
was_out
=
false
;
...
@@ -272,7 +277,7 @@ class FilamentSensorBase {
...
@@ -272,7 +277,7 @@ class FilamentSensorBase {
public:
public:
static
float
runout_distance_mm
;
static
float
runout_distance_mm
;
static
void
reset
()
{
static
inline
void
reset
()
{
LOOP_L_N
(
i
,
EXTRUDERS
)
filament_present
(
i
);
LOOP_L_N
(
i
,
EXTRUDERS
)
filament_present
(
i
);
}
}
...
...
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