Initial commit

This commit is contained in:
spacemeowx2 2020-12-03 16:47:36 +08:00 committed by spacelin
commit 57214e9a4e
8 changed files with 45 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
/Cargo.lock

9
Cargo.lock generated Normal file
View File

@ -0,0 +1,9 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "blflash"
version = "0.1.0"
[[package]]
name = "cargo-blflash"
version = "0.1.0"

5
Cargo.toml Normal file
View File

@ -0,0 +1,5 @@
[workspace]
members = [
"cargo-blflash",
"blflash",
]

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# blflash
BL602 serial flasher
Inspired by https://github.com/esp-rs/espflash

9
blflash/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "blflash"
version = "0.1.0"
authors = ["spacelin <spacelin@tencent.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
blflash/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

9
cargo-blflash/Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "cargo-blflash"
version = "0.1.0"
authors = ["spacelin <spacelin@tencent.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}