support for EU rev 0, updates to tools, other cleanup (#255)

* srceu

* remove warning

* and some cleanup
This commit is contained in:
petrie911 2024-05-18 17:49:49 -05:00 committed by GitHub
parent 36ac4066c9
commit 80eaf7d2e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
110 changed files with 9734 additions and 198 deletions

View file

@ -186,7 +186,8 @@ def main():
files = args.files
extra_files = []
else:
files = glob.glob("src/**/*.c", recursive=True)
files = glob.glob("src*/**/*.c", recursive=True)
files = [x for x in files if "assets" not in x]
extra_files = glob.glob("assets/**/*.xml", recursive=True)
format_files(files, extra_files, nb_jobs)