File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -119,13 +119,6 @@ def support_matrix_by_board():
119
119
120
120
boards = dict ()
121
121
for port in SUPPORTED_PORTS :
122
- # each port appears to use its own define for the chipset
123
- if port in ["atmel-samd" ]:
124
- chip_keyword = "CHIP_FAMILY"
125
- elif port in ["nrf" ]:
126
- chip_keyword = "MCU_VARIANT"
127
- elif port in ["stm" ]:
128
- chip_keyword = "MCU_SERIES"
129
122
130
123
port_dir = "ports/{}/boards" .format (port )
131
124
for entry in os .scandir (port_dir ):
@@ -135,8 +128,6 @@ def support_matrix_by_board():
135
128
136
129
settings = get_settings_from_makefile (f'ports/{ port } ' , entry .name )
137
130
138
- board_chip = lookup_setting (settings , chip_keyword , 'Unknown Chip' )
139
-
140
131
with open (os .path .join (entry .path , "mpconfigboard.h" )) as get_name :
141
132
board_contents = get_name .read ()
142
133
board_name_re = re .search ("(?<=MICROPY_HW_BOARD_NAME)\s+(.+)" ,
You can’t perform that action at this time.
0 commit comments