mirror of https://github.com/ARMmbed/mbed-os.git
Moved detailed memap parameter to consturctor
parent
99ac966825
commit
2b36d2de5c
|
@ -38,11 +38,11 @@ class MemapParser(object):
|
|||
# sections to print info (generic for all toolchains)
|
||||
sections = ('.text', '.data', '.bss', '.heap', '.stack')
|
||||
|
||||
def __init__(self):
|
||||
def __init__(self, detailed_misc=False):
|
||||
""" General initialization
|
||||
"""
|
||||
#
|
||||
self.detailed_misc = False
|
||||
self.detailed_misc = detailed_misc
|
||||
|
||||
# list of all modules and their sections
|
||||
self.modules = dict()
|
||||
|
@ -643,11 +643,7 @@ def main():
|
|||
args = parser.parse_args()
|
||||
|
||||
# Create memap object
|
||||
memap = MemapParser()
|
||||
|
||||
# Show Misc unfolded
|
||||
if args.detailed:
|
||||
memap.detailed_misc = True
|
||||
memap = MemapParser(detailed_misc=args.detailed)
|
||||
|
||||
# Parse and decode a map file
|
||||
if args.file and args.toolchain:
|
||||
|
|
Loading…
Reference in New Issue