当前位置:网站首页>[M32] simple interpretation of MCU code, RO data, RW data and Zi data

[M32] simple interpretation of MCU code, RO data, RW data and Zi data

2022-06-22 06:29:00 Cicero

Output information :

compiling dump_hex.c...
linking...
Program Size: Code=46632 RO-data=616 RW-data=268 ZI-data=15676  
FromELF: creating hex file...
"A518x\A518x.axf" - 0 Error(s), 1 Warning(s).
Build Time Elapsed:  00:00:20

Code: Code section ( Code field ), There is Flash in , Binary code

RO-data: The constant area ( Read only data field ), There is Flash in , Store the values of local or global variables , Often be const modification

RW-data: Global area ( Static zone / Read / write data field ), There is Flash in , Runtime occupancy RAM Space , Global variables with non-zero initial value

ZI-data: Global area ( Global variables with an initial value of zero )、 Stack space ( local variable )、 Heap space ( Dynamic applications ), There is RAM In the space , Not occupy Flash Space

communication

WeChat official account : IOT refers to the north
B standing : IOT refers to the north
Thousands of penguins :658685162

原网站

版权声明
本文为[Cicero]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/173/202206220622498598.html