feat: refactor sgclaw around zeroclaw compat runtime
This commit is contained in:
41
third_party/zeroclaw/firmware/nucleo/Cargo.toml
vendored
Normal file
41
third_party/zeroclaw/firmware/nucleo/Cargo.toml
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
# ZeroClaw Nucleo-F401RE firmware — JSON-over-serial peripheral.
|
||||
#
|
||||
# Listens for newline-delimited JSON on USART2 (PA2/PA3, ST-Link VCP).
|
||||
# Protocol: same as Arduino/ESP32 — ping, capabilities, gpio_read, gpio_write.
|
||||
#
|
||||
# Build: cargo build --release
|
||||
# Flash: probe-rs run --chip STM32F401RETx target/thumbv7em-none-eabihf/release/nucleo
|
||||
# Or: zeroclaw peripheral flash-nucleo
|
||||
|
||||
[workspace]
|
||||
|
||||
[package]
|
||||
name = "nucleo"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "ZeroClaw Nucleo-F401RE peripheral firmware — GPIO over JSON serial"
|
||||
|
||||
[dependencies]
|
||||
embassy-executor = { version = "0.9", features = ["arch-cortex-m", "executor-thread", "defmt"] }
|
||||
embassy-stm32 = { version = "0.5", features = ["defmt", "stm32f401re", "unstable-pac", "memory-x", "time-driver-tim4", "exti"] }
|
||||
embassy-time = { version = "0.5", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
|
||||
cortex-m = { version = "0.7", features = ["inline-asm", "critical-section-single-core"] }
|
||||
cortex-m-rt = "0.7"
|
||||
defmt = "1.0"
|
||||
defmt-rtt = "1.0"
|
||||
panic-probe = { version = "1.0", features = ["print-defmt"] }
|
||||
heapless = { version = "0.9", default-features = false }
|
||||
critical-section = "1.1"
|
||||
|
||||
[package.metadata.embassy]
|
||||
build = [
|
||||
{ target = "thumbv7em-none-eabihf", artifact-dir = "target" }
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
opt-level = "s"
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
panic = "abort"
|
||||
debug = 2
|
||||
Reference in New Issue
Block a user