[2.0.x] Fix some 8-bit Teensyduino compile warnings (#8385)

* Fix some 8-bit Teensyduino compile warnings

-Override Teensyduino legacy NOT_A_PIN 127 define
-some fixups for Printrboard_RevF pins

* Proper cleanup of Printrboard Rev.F pins

* Apply LCD fixes to Printrboard v1
This commit is contained in:
Dave Johnson
2017-11-12 23:07:59 -08:00
committed by Scott Lahteine
parent e8e92f8969
commit c009a990e4
3 changed files with 78 additions and 96 deletions

View File

@ -1150,6 +1150,7 @@
#undef min
#define min(a,b) ((a)<(b)?(a):(b))
#undef NOT_A_PIN // Override Teensyduino legacy CapSense define work-around
#define NOT_A_PIN 0 // For PINS_DEBUGGING
#endif