diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2019-12-17 14:35:37 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-17 14:35:37 -0800 |
| commit | e9cb47ffbdc9c7ece589c4ee3cb77fcfd20c391b (patch) | |
| tree | 7c76b358a6c9b446477bfb8e2baaebcb62fe441b /tools | |
| parent | 1108e8f2cca58db4a399d156ea892d21bb3b8fee (diff) | |
| parent | 81581b345c4cb4dbf33af3c3bbd48c6baf522283 (diff) | |
Merge pull request #2393 from dhalbert/increase-cpx-stack
Increase CPX stack size slightly
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build_memory_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_memory_info.py b/tools/build_memory_info.py index f61b843ce..93b4c1e82 100644 --- a/tools/build_memory_info.py +++ b/tools/build_memory_info.py @@ -73,7 +73,7 @@ ram_region = regions["RAM"] free_flash = firmware_region - text - data free_ram = ram_region - data - bss print("{} bytes free in flash firmware space out of {} bytes ({}kB).".format(free_flash, firmware_region, firmware_region / 1024)) -print("{} bytes free in ram for heap out of {} bytes ({}kB).".format(free_ram, ram_region, ram_region / 1024)) +print("{} bytes free in ram for stack and heap out of {} bytes ({}kB).".format(free_ram, ram_region, ram_region / 1024)) print() # Check that we have free flash space. GCC doesn't fail when the text + data |
