aboutsummaryrefslogtreecommitdiff
path: root/hwdef-FF_PL47.h
diff options
context:
space:
mode:
authorSelene ToyKeeper2018-11-03 18:55:31 -0600
committerSelene ToyKeeper2018-11-03 18:55:31 -0600
commit94ba77de5c2c4bf8df3f23ac9ab397a360a75e69 (patch)
tree87cd0f266772a88019c7eedb285278579edcb49c /hwdef-FF_PL47.h
parentforgot to add the Sofirn SP36 config file earlier, oops (diff)
downloadanduril-94ba77de5c2c4bf8df3f23ac9ab397a360a75e69.tar.gz
anduril-94ba77de5c2c4bf8df3f23ac9ab397a360a75e69.tar.bz2
anduril-94ba77de5c2c4bf8df3f23ac9ab397a360a75e69.zip
Made it easier to override hwdef-*.h values in cfg-*.h files.
Diffstat (limited to 'hwdef-FF_PL47.h')
-rw-r--r--hwdef-FF_PL47.h29
1 files changed, 14 insertions, 15 deletions
diff --git a/hwdef-FF_PL47.h b/hwdef-FF_PL47.h
index 4189220..217ce45 100644
--- a/hwdef-FF_PL47.h
+++ b/hwdef-FF_PL47.h
@@ -1,24 +1,23 @@
/* Fireflies PL47 driver layout
+ * same as a D4S, basically, except ...
*/
-// same as a D4S, basically
-#include "hwdef-Emisar_D4S.h"
-#undef FSM_EMISAR_D4S_DRIVER
-#undef FSM_EMISAR_D4_DRIVER
-// ... except the PL47 has aux LEDs on pin 7
-#ifdef AUXLED_PIN
-#undef AUXLED_PIN
-#endif
+// ... the PL47 has aux LEDs on pin 7
+#ifndef AUXLED_PIN
#define AUXLED_PIN PB2 // pin 7
+#endif
// ... and switch LEDs on pin 3
-#ifdef AUXLED2_PIN
-#undef AUXLED2_PIN
-#endif
+#ifndef AUXLED2_PIN
#define AUXLED2_PIN PB4 // pin 3
-
-// average drop across diode on this hardware
-#ifdef VOLTAGE_FUDGE_FACTOR
-#undef VOLTAGE_FUDGE_FACTOR
#endif
+
+// ... and slightly different calibration
+#ifndef VOLTAGE_FUDGE_FACTOR
#define VOLTAGE_FUDGE_FACTOR 7 // add 0.35V
+#endif
+
+#include "hwdef-Emisar_D4S.h"
+#undef FSM_EMISAR_D4S_DRIVER
+#undef FSM_EMISAR_D4_DRIVER
+