Browse Source

Reduce Teensy++ 2.0 to a single entry

Followup to #7750, #7826
Scott Lahteine 7 years ago
parent
commit
200f971ef7
1 changed files with 7 additions and 25 deletions
  1. 7
    25
      platformio.ini

+ 7
- 25
platformio.ini View File

@@ -64,40 +64,22 @@ lib_deps    = ${common.lib_deps}
64 64
 src_filter  = ${common.default_src_filter}
65 65
 
66 66
 #
67
-# PrintrBoard (Teensy++ 2.0)
67
+# Teensy++ 2.0
68 68
 #
69
-[env:printrboard]
69
+# - PrintrBoard
70
+# - PrintrBoard Rev.F
71
+# - Brainwave Pro
72
+#
73
+[env:teensy20]
70 74
 platform      = teensy
71 75
 framework     = arduino
72 76
 board         = teensy20pp
73
-build_flags   = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD
77
+build_flags   = -I $BUILDSRC_DIR
74 78
 #board_f_cpu  = 20000000L     ; Bug in Arduino framework disallows boards running at 20Mhz
75 79
 lib_deps      = ${common.lib_deps}
76 80
 src_filter    = ${common.default_src_filter}
77 81
 
78 82
 #
79
-# PrintrBoard Rev.F (Teensy++ 2.0)
80
-#
81
-[env:printrboard_revf]
82
-platform    = teensy
83
-framework   = arduino
84
-board       = teensy20pp
85
-build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD_REVF
86
-lib_deps    = ${common.lib_deps}
87
-src_filter  = ${common.default_src_filter}
88
-
89
-#
90
-# Brainwave Pro (Teensy++ 2.0)
91
-#
92
-[env:brainwavepro]
93
-platform    = teensy
94
-framework   = arduino
95
-board       = teensy20pp
96
-build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_BRAINWAVE_PRO
97
-lib_deps    = ${common.lib_deps}
98
-src_filter  = ${common.default_src_filter}
99
-
100
-#
101 83
 # RAMBo
102 84
 #
103 85
 [env:rambo]

Loading…
Cancel
Save