[beken-72xx] Update Arduino core to new structure

This commit is contained in:
Kuba Szczodrzyński
2023-03-01 21:55:54 +01:00
parent 72ab64461c
commit b51501fb21
60 changed files with 301 additions and 214 deletions

View File

@@ -75,7 +75,13 @@ def env_add_arduino_libraries(env: Environment, queue, name: str, path: str) ->
"+<**/*.c*>",
],
includes=[
"!<*/*>" if name.startswith("common") else "!<*>",
"!<*/.>",
"!<*/*>",
]
if name.startswith("common")
else [
"!<.>",
"!<*>",
],
)
return True