My current unstripped firmware is compiling to ~4.7MB (but it is still fitting on the Pico somehow?) you need to run `cargo size --release -- -A` you'll see something like like: ``` hello : section size addr .vector_table 192 0x8000000 .text 2612 0x80000c0 .rodata 28 0x8000af4 .data 0 0x20000000 .gnu.sgstubs 0 0x8000b20 .bss 2080 0x20000000 .uninit 0 0x20000820 .comment 147 0x0 .ARM.attributes 50 0x0 Total 5109 ``` calculate sum of the sizes of `.vector_table`, `.text`, and `.rodata` that will be the size of your binary in flash