Skip to content

Commit 3ea625c

Browse files
authored
Merge pull request #2161 from PrzemekWirkus/devel_memap_summary_fields
[Tools] Replace in memap CSV report fields
2 parents 0d3ac5a + bba13dd commit 3ea625c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/memap.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -436,16 +436,16 @@ def generate_output(self, export_format, file_output=None):
436436
csv_module_section += [i+k]
437437
csv_sizes += [self.modules[i][k]]
438438

439-
csv_module_section += ['total_static_ram']
439+
csv_module_section += ['static_ram']
440440
csv_sizes += [subtotal['.data']+subtotal['.bss']]
441441

442-
csv_module_section += ['allocated_heap']
442+
csv_module_section += ['heap']
443443
if subtotal['.heap'] == 0:
444444
csv_sizes += ['unknown']
445445
else:
446446
csv_sizes += [subtotal['.heap']]
447447

448-
csv_module_section += ['allocated_stack']
448+
csv_module_section += ['stack']
449449
if subtotal['.stack'] == 0:
450450
csv_sizes += ['unknown']
451451
else:

0 commit comments

Comments
 (0)