Skip to content
Snippets Groups Projects
Commit 65a02128 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Easier override of FILWIDTH_PIN

parent 147d9d76
Branches
Tags
No related merge requests found
......@@ -111,9 +111,12 @@
//
// Other board specific pins
//
#define FILWIDTH_PIN 37
#define LED_PIN 13
#define SPINDLE_ENABLE_PIN 4
#define FAN_PIN 3
#define PS_ON_PIN 45
#define KILL_PIN 46
#ifndef FILWIDTH_PIN
#define FILWIDTH_PIN 37 // should be Analog Input (0-15)
#endif
......@@ -99,7 +99,10 @@
// Misc. Functions
//
#define SDSS 26
#ifndef FILWIDTH_PIN
#define FILWIDTH_PIN 2 // Analog Input
#endif
//
// LCD / Controller
......
......@@ -102,7 +102,10 @@
// Misc. Functions
//
#define SDSS 20 // Teensylu pin mapping
#ifndef FILWIDTH_PIN
#define FILWIDTH_PIN 2 // Analog Input
#endif
//
// LCD / Controller
......
......@@ -135,10 +135,13 @@
//
#define SDSS 53
#define LED_PIN 13
#define FILWIDTH_PIN 3 // Analog Input
#define PS_ON_PIN 4
#define CASE_LIGHT_PIN 46
#ifndef FILWIDTH_PIN
#define FILWIDTH_PIN 3 // Analog Input
#endif
//
// LCD / Controller
//
......
......@@ -118,7 +118,10 @@
#define SDSS 53
#define LED_PIN 13
#define PS_ON_PIN 4
#ifndef FILWIDTH_PIN
#define FILWIDTH_PIN 3 // Analog Input
#endif
//
// LCD / Controller
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment