Run your application
mainOnce configured, you can run your application using cargo run. If you have defined binary targets in src/bin/, you can run specific ones using the -b or rb alias.
Adjusting RTT Buffer Size
If flip-link reports a memory overflow, you can decrease the defmt RTT buffer size using the DEFMT_RTT_BUFFER_SIZE environment variable. Use powers of two for optimal performance.
# Run a specific binary (e.g., hello.rs)
cargo rb hello
# Run with a smaller RTT buffer if memory is tight
DEFMT_RTT_BUFFER_SIZE=64 cargo rb hello