summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMengsk <[email protected]>2023-09-27 11:46:52 +0200
committerMengsk <[email protected]>2023-09-27 11:46:52 +0200
commit42eb4e0da0f5218d43ef81631bbbe2f369cc13fa (patch)
treef69c4845822bf0c4b02f521f301901225c0f2ab5
parentb35621fc63defdd3191d569c8248dae52997ce8f (diff)
Fix CI.
-rw-r--r--tools/iar_gen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/iar_gen.py b/tools/iar_gen.py
index 646a581f4..264dd9a58 100644
--- a/tools/iar_gen.py
+++ b/tools/iar_gen.py
@@ -64,18 +64,18 @@ def ListPath(path, blacklist=[]):
dir = os.path.dirname(file)
if dir not in dirs:
dirs.append(dir)
- # Print .c groupped by dir
+ # Print .c grouped by dir
for dir in dirs:
print('<group name="' + dir.replace('../', '').replace('\\','/') + '">')
for file in files:
if os.path.dirname(file) == dir:
print(' <path>$TUSB_DIR$/' + file.replace('../','').replace('\\','/')+'</path>')
print('</group>')
-
+
def List():
ListPath('src', [ 'template.c', 'dcd_synopsys.c', 'dcd_esp32sx.c' ])
ListPath('lib/SEGGER_RTT')
-
+
if __name__ == "__main__":
if (len(sys.argv) > 1):
if (sys.argv[1] == 'l'):