Try jj
This commit is contained in:
parent
591c1153a4
commit
681d7410a4
8 changed files with 168 additions and 181 deletions
|
|
@ -8,41 +8,38 @@ name = "xiao-esp32c6"
|
|||
path = "./src/bin/main.rs"
|
||||
|
||||
[dependencies]
|
||||
esp-bootloader-esp-idf = "0.1.0"
|
||||
esp-hal = { version = "=1.0.0-beta.1", features = [
|
||||
"esp32c6",
|
||||
"log-04",
|
||||
"unstable",
|
||||
bt-hci = { version = "*", features = [] }
|
||||
critical-section = "*"
|
||||
embassy-executor = { version = "*", features = [
|
||||
"log",
|
||||
"task-arena-size-20480",
|
||||
] }
|
||||
log = "0.4.27"
|
||||
|
||||
embassy-net = { version = "0.7.0", features = [
|
||||
embassy-net = { version = "*", features = [
|
||||
"dhcpv4",
|
||||
"log",
|
||||
"medium-ethernet",
|
||||
"tcp",
|
||||
"udp",
|
||||
] }
|
||||
embedded-io = "0.6.1"
|
||||
embedded-io-async = "0.6.1"
|
||||
esp-alloc = "0.8.0"
|
||||
esp-backtrace = { version = "0.16.0", features = [
|
||||
embassy-time = { version = "*", features = ["log"] }
|
||||
embedded-io = "*"
|
||||
embedded-io-async = "*"
|
||||
esp-alloc = "*"
|
||||
esp-backtrace = { version = "*", features = [
|
||||
"esp32c6",
|
||||
"exception-handler",
|
||||
"panic-handler",
|
||||
"println",
|
||||
] }
|
||||
esp-println = { version = "0.14.0", features = ["esp32c6", "log-04"] }
|
||||
# for more networking protocol support see https://crates.io/crates/edge-net
|
||||
bt-hci = { version = "0.2.1", features = [] }
|
||||
critical-section = "1.2.0"
|
||||
embassy-executor = { version = "0.7.0", features = [
|
||||
"log",
|
||||
"task-arena-size-20480",
|
||||
esp-bootloader-esp-idf = "*"
|
||||
esp-hal = { version = "=1.0.0-beta.1", features = [
|
||||
"esp32c6",
|
||||
"log-04",
|
||||
"unstable",
|
||||
] }
|
||||
embassy-time = { version = "0.4.0", features = ["log"] }
|
||||
esp-hal-embassy = { version = "0.8.1", features = ["esp32c6", "log-04"] }
|
||||
esp-wifi = { version = "0.14.1", features = [
|
||||
esp-hal-embassy = { version = "*", features = ["esp32c6", "log-04"] }
|
||||
esp-println = { version = "*", features = ["esp32c6", "log-04"] }
|
||||
esp-wifi = { version = "*", features = [
|
||||
"ble",
|
||||
"builtin-scheduler",
|
||||
"coex",
|
||||
|
|
@ -52,7 +49,8 @@ esp-wifi = { version = "0.14.1", features = [
|
|||
"smoltcp",
|
||||
"wifi",
|
||||
] }
|
||||
smoltcp = { version = "0.12.0", default-features = false, features = [
|
||||
log = "*"
|
||||
smoltcp = { version = "*", default-features = false, features = [
|
||||
"log",
|
||||
"medium-ethernet",
|
||||
"multicast",
|
||||
|
|
@ -65,8 +63,8 @@ smoltcp = { version = "0.12.0", default-features = false, features = [
|
|||
"socket-tcp",
|
||||
"socket-udp",
|
||||
] }
|
||||
static_cell = { version = "2.1.0", features = ["nightly"] }
|
||||
trouble-host = { version = "0.1.0", features = ["gatt"] }
|
||||
static_cell = { version = "*", features = ["nightly"] }
|
||||
trouble-host = { version = "*", features = ["gatt"] }
|
||||
|
||||
|
||||
[profile.dev]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue