Exclude unphone tft for now. Something is wonky

This commit is contained in:
Ben Meadors 2025-02-07 20:07:54 -06:00
parent 2996a9616f
commit 368d811ea6
2 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,7 @@ for subdir, dirs, files in os.walk(rootdir):
else:
outlist.append(section)
# Add the TFT variants if the base variant is selected
elif section.replace("-tft", "") in outlist:
elif section.replace("-tft", "") in outlist and config[config[c].name].get("board_level") != "extra":
outlist.append(section)
if "board_check" in config[config[c].name]:
if (config[config[c].name]["board_check"] == "true") & (

View File

@ -32,6 +32,7 @@ lib_deps = ${esp32s3_base.lib_deps}
[env:unphone-tft]
extends = env:unphone
board_level = extra
board_build.partitions = default_8MB.csv
build_flags =
${env:unphone.build_flags}