We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26490e1 commit 7d839cfCopy full SHA for 7d839cf
tools/modm_tools/size.py
@@ -116,7 +116,7 @@ def is_in_memory(name):
116
sections["static"].append(s["name"])
117
118
# create lists of the used sections for Flash and RAM
119
- sections["rom"] = sorted(sections["rom"])
+ sections["rom"] = sorted(list(set(sections["rom"])))
120
sections["ram"] = sorted(list(set(sections["static"] + sections["stack"])))
121
sections["heap"] = sorted(sections["heap"])
122
0 commit comments