├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── commands.rs ├── commands ├── detect.rs ├── flash.rs ├── pit.rs └── reboot.rs ├── device.rs ├── error.rs ├── macros.rs ├── main.rs ├── pit.rs ├── proto.rs └── proto ├── error.rs └── util.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/README.md -------------------------------------------------------------------------------- /src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/commands.rs -------------------------------------------------------------------------------- /src/commands/detect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/commands/detect.rs -------------------------------------------------------------------------------- /src/commands/flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/commands/flash.rs -------------------------------------------------------------------------------- /src/commands/pit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/commands/pit.rs -------------------------------------------------------------------------------- /src/commands/reboot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/commands/reboot.rs -------------------------------------------------------------------------------- /src/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/device.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/pit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/pit.rs -------------------------------------------------------------------------------- /src/proto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/proto.rs -------------------------------------------------------------------------------- /src/proto/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/proto/error.rs -------------------------------------------------------------------------------- /src/proto/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickelc/wuotan/HEAD/src/proto/util.rs --------------------------------------------------------------------------------