feat: initial commit

This commit is contained in:
Kat Inskip 2025-10-17 05:55:27 -07:00
commit 7888da2541
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
10 changed files with 1515 additions and 0 deletions

19
Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "blinky"
version = "0.1.0"
authors = ["Sergio Gasquez <sergio.gasquez@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
[dependencies]
esp-backtrace = { version = "0.18.0", features = [
"esp32c3",
"panic-handler",
"println",
]}
esp-bootloader-esp-idf = { version = "0.3.0", features = ["esp32c3"]}
esp-hal = { version = "1.0.0-rc.1",features = [
"esp32c3",
"unstable",
] }
esp-println = { version = "0.16.0", features = ["esp32c3", "log-04"] }