File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ function print_size_info()
5
5
elf_file=$1
6
6
7
7
if [ -z " $elf_file " ]; then
8
- printf " sketch iram0.text flash.text flash.rodata irom0.text dram0.data dram0.bss dram flash\n"
8
+ printf " sketch iram0.text flash.text flash.rodata dram0.data dram0.bss dram flash\n"
9
9
return 0
10
10
fi
11
11
@@ -25,7 +25,7 @@ function print_size_info()
25
25
26
26
total_ram=$(( ${segments[dram0data]} + ${segments[dram0bss]} ))
27
27
total_flash=$(( ${segments[iram0text]} + ${segments[flashtext]} + ${segments[dram0data]} + ${segments[flashrodata]} ))
28
- printf " %-28s %-8d %-8d %-8d %-8d %-8d %-8d %-8d %-8d\n" $sketch_name ${segments[iram0text]} ${segments[flashtext]} ${segments[flashrodata]} ${segments[dram0data]} ${segments[dram0bss]} $total_ram $total_flash
28
+ printf " %-28s %-8d %-8d %-8d %-8d %-8d %-8d %-8d\n" $sketch_name ${segments[iram0text]} ${segments[flashtext]} ${segments[flashrodata]} ${segments[dram0data]} ${segments[dram0bss]} $total_ram $total_flash
29
29
return 0
30
30
}
31
31
You can’t perform that action at this time.
0 commit comments