diff --git a/Marlin/src/pins/pins_RAMPS.h b/Marlin/src/pins/pins_RAMPS.h
index 7371fe8357f20b5e48b14cef3948e7d4a4c116f7..5b83176f4b56d92e6deae70f91225c1026b2319c 100644
--- a/Marlin/src/pins/pins_RAMPS.h
+++ b/Marlin/src/pins/pins_RAMPS.h
@@ -45,7 +45,7 @@
  */
 
 #if ENABLED(IS_REARM)
-  #error "Oops!  use 'pins_RAMPS_RE_ARM.h' when Re-Arm is used."
+  #error "Oops!  Use 'BOARD_RAMPS_RE_ARM' to build for Re-ARM."
 #endif
 
 #if !ENABLED(IS_RAMPS_SMART) && !ENABLED(IS_RAMPS_DUO) && !ENABLED(IS_RAMPS4DUE) && !ENABLED(TARGET_LPC1768)
diff --git a/Marlin/src/pins/pins_TEENSY35_36.h b/Marlin/src/pins/pins_TEENSY35_36.h
index b61f1ef85a0f9fe7d078b1f4778999ac9fcff3ed..57abfa5ae9969d8c83c7fd4dc5be1d962cbef3dd 100644
--- a/Marlin/src/pins/pins_TEENSY35_36.h
+++ b/Marlin/src/pins/pins_TEENSY35_36.h
@@ -1,15 +1,33 @@
+/**
+ * Marlin 3D Printer Firmware
+ * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
+ *
+ * Based on Sprinter and grbl.
+ * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
 /****************************************************************************************
 * Teensy 3.5 (MK64FX512) and Teensy 3.6 (MK66FX1M0) Breadboard pin assignments
 * Requires the Teensyduino software with Teensy 3.5 or Teensy 3.6 selected in Arduino IDE!
 * http://www.pjrc.com/teensy/teensyduino.html
-*
 ****************************************************************************************/
-#if MOTHERBOARD == 841 // BOARD_TEENSY35_36
-#define KNOWN_BOARD 1
-#define AT90USB 1286  // Disable MarlinSerial etc.
 
 #if !IS_32BIT_TEENSY
-  #error Oops!  Make sure you have 'Teensy 3.5' or 'Teensy 3.6' selected from the 'Tools -> Boards' menu.
+  #error "Oops!  Make sure you have 'Teensy 3.5' or 'Teensy 3.6' selected from the 'Tools -> Boards' menu."
 #endif
 
 #if IS_TEENSY35
@@ -18,12 +36,13 @@
   #define BOARD_NAME "Teensy3.6"
 #endif
 
-#define LARGE_FLASH        true
+#define AT90USB 1286   // Disable MarlinSerial etc.
 #define USBCON //1286  // Disable MarlinSerial etc.
+#define LARGE_FLASH        true
 
 /*
-teemuatlut plan for Teensy3.5 and Teensy3.6:
 
+  teemuatlut plan for Teensy3.5 and Teensy3.6:
                                                      USB
                                           GND |-----#####-----| VIN 5V
       X_STEP_PIN          MOSI1   RX1       0 |     #####     | Analog GND
@@ -84,7 +103,6 @@ D8    HEATER_BED_PIN      CS1     RX4  A12 31 |   46 * * 47   | 34 A15 PWM
 
 #define HEATER_0_PIN       30
 #define HEATER_1_PIN       36
-#define HEATER_2_PIN       -1
 #define HEATER_BED_PIN     31
 #define FAN_PIN             2
 
@@ -93,27 +111,27 @@ D8    HEATER_BED_PIN      CS1     RX4  A12 31 |   46 * * 47   | 34 A15 PWM
 #define Z_STOP_PIN         28
 
 #define TEMP_0_PIN          2 // Extruder / Analog pin numbering: 2 => A2
-#define TEMP_BED_PIN        1 // Bed / Analog pin numbering
 #define TEMP_1_PIN          0
-#define TEMP_2_PIN         -1
+#define TEMP_BED_PIN        1 // Bed / Analog pin numbering
 
-#define SDPOWER            -1
-#define SD_DETECT_PIN      -1
 #define SDSS               39 // 8
 #define LED_PIN            13
 #define PS_ON_PIN           1
-#define KILL_PIN           -1
 #define ALARM_PIN          -1
 
 #define FILWIDTH_PIN        6
 #define SOL1_PIN           28
 
+#if 0
+// Pretty sure this is obsolete!
+// Please use Marlin 1.1.x pins files as reference for new pins files.
 #ifndef SDSUPPORT
   // these are defined in the SD library if building with SD support
   #define SCK_PIN          13
   #define MISO_PIN         12
   #define MOSI_PIN         11
 #endif
+#endif
 
 #ifdef ULTRA_LCD
   #define LCD_PINS_RS      40
@@ -126,5 +144,3 @@ D8    HEATER_BED_PIN      CS1     RX4  A12 31 |   46 * * 47   | 34 A15 PWM
   #define BTN_EN2          47
   #define BTN_ENC          48
 #endif
-
-#endif  // MOTHERBOARD == 841 (Teensy3.5 and Teensy3.6)