🔨 PlatformIO 6 compatibility

This commit is contained in:
Scott Lahteine
2023-07-20 13:37:47 -05:00
parent 398cae7625
commit dfa748cb96
3 changed files with 221 additions and 220 deletions

View File

@@ -16,7 +16,8 @@ def copytree(src, dst, symlinks=False, ignore=None):
shutil.copy2(item, dst / item.name)
def replace_define(field, value):
for define in env['CPPDEFINES']:
envdefs = env['CPPDEFINES'].copy()
for define in envdefs:
if define[0] == field:
env['CPPDEFINES'].remove(define)
env['CPPDEFINES'].append((field, value))