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
e854eb93
Commit
e854eb93
authored
5 years ago
by
LinFor
Committed by
Scott Lahteine
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Allow pins overrides for SKR V1.3 (#15451)
parent
8924c0f1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Marlin/src/pins/lpc1768/pins_BIGTREE_SKR_V1.3.h
+18
-6
18 additions, 6 deletions
Marlin/src/pins/lpc1768/pins_BIGTREE_SKR_V1.3.h
with
18 additions
and
6 deletions
Marlin/src/pins/lpc1768/pins_BIGTREE_SKR_V1.3.h
+
18
−
6
View file @
e854eb93
...
...
@@ -33,7 +33,9 @@
//
// Servos
//
#define SERVO0_PIN P2_00
#ifndef SERVO0_PIN
#define SERVO0_PIN P2_00
#endif
//
// Limit Switches
...
...
@@ -165,14 +167,24 @@
//
// Heaters / Fans
//
#define HEATER_0_PIN P2_07
#ifndef HEATER_0_PIN
#define HEATER_0_PIN P2_07
#endif
#if HOTENDS == 1
#define FAN1_PIN P2_04
#ifndef FAN1_PIN
#define FAN1_PIN P2_04
#endif
#else
#define HEATER_1_PIN P2_04
#ifndef HEATER_1_PIN
#define HEATER_1_PIN P2_04
#endif
#endif
#ifndef FAN_PIN
#define FAN_PIN P2_03
#endif
#ifndef HEATER_BED_PIN
#define HEATER_BED_PIN P2_05
#endif
#define FAN_PIN P2_03
#define HEATER_BED_PIN P2_05
/**
* _____ _____
...
...
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