├── .cargo └── config ├── .gdbinit ├── .gitignore ├── .vscode └── settings.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── memory.x ├── readme.md ├── src └── main.rs └── ushell.png /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/.cargo/config -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/.gdbinit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/memory.x -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/readme.md -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/src/main.rs -------------------------------------------------------------------------------- /ushell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell-rtic-example/HEAD/ushell.png --------------------------------------------------------------------------------