mirror of
https://github.com/hathach/tinyusb.git
synced 2025-02-11 09:40:06 +00:00
fix build filter for esp32
This commit is contained in:
parent
3c564fd947
commit
65e741937a
@ -40,7 +40,7 @@ def skip_example(example, board):
|
|||||||
for line in mk_contents.splitlines():
|
for line in mk_contents.splitlines():
|
||||||
match = re.search(r'set\(IDF_TARGET\s+"([^"]+)"\)', line)
|
match = re.search(r'set\(IDF_TARGET\s+"([^"]+)"\)', line)
|
||||||
if match:
|
if match:
|
||||||
mcu = match.group(1)
|
mcu = match.group(1).upper()
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
for token in mk_contents.split():
|
for token in mk_contents.split():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user