Doxygen sym fix (#505)

* Add doxygen gen for syms fix
This commit is contained in:
MegaMech 2023-12-23 19:14:32 -07:00 committed by GitHub
parent bd32f31e8b
commit 141c9a0fd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -34,11 +34,11 @@ def process_map_file(map_file_path):
if __name__ == "__main__":
map_file_path = "../build/us/mk64.us.map"
map_file_path = "build/us/mk64.us.map"
doxygen_formatted_content = process_map_file(map_file_path)
# Specify the output file path
output_file_path = "doxygen_syms.txt"
output_file_path = "tools/doxygen_syms.txt"
# Write the result to the output file
with open(output_file_path, 'w') as output_file: