├── Cargo.toml ├── README.md ├── config.toml ├── debug_probes.md ├── img ├── Raspberry_Pi_Pico_pinout.png └── Raspberry_Pico_Reset_Button_small.png ├── memory.x └── src ├── fmt.rs └── main.rs /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/config.toml -------------------------------------------------------------------------------- /debug_probes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/debug_probes.md -------------------------------------------------------------------------------- /img/Raspberry_Pi_Pico_pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/img/Raspberry_Pi_Pico_pinout.png -------------------------------------------------------------------------------- /img/Raspberry_Pico_Reset_Button_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/img/Raspberry_Pico_Reset_Button_small.png -------------------------------------------------------------------------------- /memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/memory.x -------------------------------------------------------------------------------- /src/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/src/fmt.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaocarvalhoopen/Raspberry_Pi_Pico_in_Rust__Proj_Template_with_RTIC_USB-Serial_UF2/HEAD/src/main.rs --------------------------------------------------------------------------------