$ cargo size --release Finished `release` profile [optimized + debuginfo] target(s) in 0.11s text data bss dec hex filename 45940 0 37456 83396 145c4 template-rp2040 ``` Total flash usage is `text` + `data`. Total static RAM usage is `data` + `bss`. You can also see a more detailed view by passing the `-Ax` flag: ```sh $ cargo size --release -- -Ax Finished `release` profile [optimized + debuginfo] target(s) in 0.08s template-rp2040 : section size addr .vector_table 0xc0 0x10000100 .text 0x9240 0x100001c0 .rodata 0x1e48 0x10009400 .data 0x12c 0x20000000 .gnu.sgstubs 0 0x1000b380 .bss 0x8e50 0x20000130 .uninit 0x400 0x20008f80 .boot2 0x100 0x10000000 .defmt 0x37 0x0 .debug_loc 0x17e21 0x0 .debug_abbrev 0x15e3 0x0 .debug_info 0x57318 0x0 .debug_aranges 0x1a20 0x0 .debug_ranges 0x9278 0x0 .debug_str 0x705bc 0x0 .comment 0x99 0x0 .ARM.attributes 0x30 0x0 .debug_frame 0x1ad4 0x0 .debug_line 0x11b3c 0x0 Total 0x113644