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
 src_filter  = ${common.default_src_filter}
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
 platform      = teensy
74
 platform      = teensy
71
 framework     = arduino
75
 framework     = arduino
72
 board         = teensy20pp
76
 board         = teensy20pp
73
-build_flags   = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD
77
+build_flags   = -I $BUILDSRC_DIR
74
 #board_f_cpu  = 20000000L     ; Bug in Arduino framework disallows boards running at 20Mhz
78
 #board_f_cpu  = 20000000L     ; Bug in Arduino framework disallows boards running at 20Mhz
75
 lib_deps      = ${common.lib_deps}
79
 lib_deps      = ${common.lib_deps}
76
 src_filter    = ${common.default_src_filter}
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
 # RAMBo
83
 # RAMBo
102
 #
84
 #
103
 [env:rambo]
85
 [env:rambo]

Loading…
Cancel
Save