Debug Rust on PineCone BL602 with VSCode and GDB
How we build and debug Embedded Rust Firmware for PineCone BL602... With VSCode and GDB... (more…)
Read more »
Like most programming languages, Rust encourages the programmer to handle
errors in a particular way. Generally speaking, error handling is divided into
two broad categories: exceptions and return values. Rust opts for return
values. Read more