diff options
| author | Dan Halbert <halbert@halwitz.org> | 2019-12-16 17:17:13 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2019-12-16 17:25:22 -0500 |
| commit | 81581b345c4cb4dbf33af3c3bbd48c6baf522283 (patch) | |
| tree | 06006c05812badeeafc3e446f3a926129d4d06f3 /tools | |
| parent | 83d1aac671aa994a72f2e5a5833cb61fb86c2944 (diff) | |
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 |
