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
aef9e036
Commit
aef9e036
authored
7 years ago
by
Scott Lahteine
Browse files
Options
Downloads
Patches
Plain Diff
More overridable FIL_RUNOUT_PIN
parent
a6563df7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Marlin/src/pins/pins_CHEAPTRONICv2.h
+3
-1
3 additions, 1 deletion
Marlin/src/pins/pins_CHEAPTRONICv2.h
Marlin/src/pins/pins_CNCONTROLS_12.h
+3
-1
3 additions, 1 deletion
Marlin/src/pins/pins_CNCONTROLS_12.h
Marlin/src/pins/pins_RAMPS_RE_ARM.h
+7
-5
7 additions, 5 deletions
Marlin/src/pins/pins_RAMPS_RE_ARM.h
with
13 additions
and
7 deletions
Marlin/src/pins/pins_CHEAPTRONICv2.h
+
3
−
1
View file @
aef9e036
...
...
@@ -109,7 +109,9 @@
//
// Other board specific pins
//
#define FIL_RUNOUT_PIN 37 // board input labeled as F-DET
#ifndef FIL_RUNOUT_PIN
#define FIL_RUNOUT_PIN 37 // board input labeled as F-DET
#endif
#define Z_MIN_PROBE_PIN 36 // additional external board input labeled as E-SENS (should be used for Z-probe)
#define LED_PIN 13
#define SPINDLE_ENABLE_PIN 4 // additional PWM pin 1 at JP1 connector - should be used for laser control too
...
...
This diff is collapsed.
Click to expand it.
Marlin/src/pins/pins_CNCONTROLS_12.h
+
3
−
1
View file @
aef9e036
...
...
@@ -91,7 +91,9 @@
// Common I/O
#define FIL_RUNOUT_PIN 18
#ifndef FIL_RUNOUT_PIN
#define FIL_RUNOUT_PIN 18
#endif
//#define PWM_1_PIN 12
//#define PWM_2_PIN 13
//#define SPARE_IO 17
...
...
This diff is collapsed.
Click to expand it.
Marlin/src/pins/pins_RAMPS_RE_ARM.h
+
7
−
5
View file @
aef9e036
...
...
@@ -190,19 +190,21 @@
#endif
#ifndef FAN_PIN
#define FAN_PIN P1_18 // (4) IO pin. Buffer needed
#define FAN_PIN P1_18
// (4) IO pin. Buffer needed
#endif
//
// Misc. Functions
//
#define LED_PIN P4_28 // (13)
#define SDSS P1_23 // (53)
#define LED_PIN P4_28
// (13)
#define SDSS P1_23
// (53)
// define digital pin 4 for the filament runout sensor. Use the RAMPS 1.4 digital input 4 on the servos connector
#define FIL_RUNOUT_PIN P1_18 // (4)
#ifndef FIL_RUNOUT_PIN
#define FIL_RUNOUT_PIN P1_18 // (4)
#endif
#define PS_ON_PIN P2_12 // (12)
#define PS_ON_PIN P2_12
// (12)
#if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT) && !defined(SPINDLE_LASER_ENABLE_PIN)
#if !defined(NUM_SERVOS) || NUM_SERVOS < 4 // try to use servo connector
...
...
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