Initial updates for ESP-IDF v4.2

This commit is contained in:
valeros
2021-01-21 13:42:23 +02:00
parent e542df17d1
commit 7e5f3f56fa
26 changed files with 754 additions and 110 deletions
+2 -2
View File
@@ -104,9 +104,9 @@ def embed_files(files, files_type):
def transform_to_asm(target, source, env):
files = [join("$BUILD_DIR", s.name + ".S") for s in source]
env.AppendUnique(PIOBUILDFILES=files)
return files, source
env.Append(
BUILDERS=dict(
TxtToBin=Builder(
@@ -155,7 +155,7 @@ env.Append(
"Generating assembly for $TARGET",
),
emitter=transform_to_asm,
single_source=True
single_source=True,
),
)
)