* feat: add ZeroClaw firmware for ESP32 and Nucleo * Introduced new firmware for ZeroClaw on ESP32 and Nucleo-F401RE, enabling JSON-over-serial communication for GPIO control. * Added `zeroclaw-esp32` with support for commands like `gpio_read` and `gpio_write`, along with capabilities reporting. * Implemented `zeroclaw-nucleo` firmware with similar functionality for STM32, ensuring compatibility with existing ZeroClaw protocols. * Updated `.gitignore` to include new firmware targets and added necessary dependencies in `Cargo.toml` for both platforms. * Created README files for both firmware projects detailing setup, build, and usage instructions. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> * feat: enhance hardware peripheral support and documentation - Added `Peripheral` trait implementation in `src/peripherals/` to manage hardware boards (STM32, RPi GPIO). - Updated `AGENTS.md` to include new extension points for peripherals and their configuration. - Introduced comprehensive documentation for adding boards and tools, including a quick start guide and supported boards. - Enhanced `Cargo.toml` to include optional dependencies for PDF extraction and peripheral support. - Created new datasheets for Arduino Uno, ESP32, and Nucleo-F401RE, detailing pin aliases and GPIO usage. - Implemented new tools for hardware memory reading and board information retrieval in the agent loop. This update significantly improves the integration and usability of hardware peripherals within the ZeroClaw framework. * feat: add ZeroClaw firmware for ESP32 and Nucleo * Introduced new firmware for ZeroClaw on ESP32 and Nucleo-F401RE, enabling JSON-over-serial communication for GPIO control. * Added `zeroclaw-esp32` with support for commands like `gpio_read` and `gpio_write`, along with capabilities reporting. * Implemented `zeroclaw-nucleo` firmware with similar functionality for STM32, ensuring compatibility with existing ZeroClaw protocols. * Updated `.gitignore` to include new firmware targets and added necessary dependencies in `Cargo.toml` for both platforms. * Created README files for both firmware projects detailing setup, build, and usage instructions. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> * feat: enhance hardware peripheral support and documentation - Added `Peripheral` trait implementation in `src/peripherals/` to manage hardware boards (STM32, RPi GPIO). - Updated `AGENTS.md` to include new extension points for peripherals and their configuration. - Introduced comprehensive documentation for adding boards and tools, including a quick start guide and supported boards. - Enhanced `Cargo.toml` to include optional dependencies for PDF extraction and peripheral support. - Created new datasheets for Arduino Uno, ESP32, and Nucleo-F401RE, detailing pin aliases and GPIO usage. - Implemented new tools for hardware memory reading and board information retrieval in the agent loop. This update significantly improves the integration and usability of hardware peripherals within the ZeroClaw framework. * feat: Introduce hardware auto-discovery and expanded configuration options for agents, hardware, and security. * chore: update dependencies and improve probe-rs integration - Updated `Cargo.lock` to remove specific version constraints for several dependencies, including `zerocopy`, `syn`, and `strsim`, allowing for more flexibility in version resolution. - Upgraded `bincode` and `bitfield` to their latest versions, enhancing serialization and memory management capabilities. - Updated `Cargo.toml` to reflect the new version of `probe-rs` from `0.24` to `0.30`, improving hardware probing functionality. - Refactored code in `src/hardware` and `src/tools` to utilize the new `SessionConfig` for session management in `probe-rs`, ensuring better compatibility and performance. - Cleaned up documentation in `docs/datasheets/nucleo-f401re.md` by removing unnecessary lines. * fix: apply cargo fmt * docs: add hardware architecture diagram. --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
154 lines
4.7 KiB
Rust
154 lines
4.7 KiB
Rust
//! ZeroClaw ESP32 firmware — JSON-over-serial peripheral.
|
|
//!
|
|
//! Listens for newline-delimited JSON commands on UART0, executes gpio_read/gpio_write,
|
|
//! responds with JSON. Compatible with host ZeroClaw SerialPeripheral protocol.
|
|
//!
|
|
//! Protocol: same as STM32 — see docs/hardware-peripherals-design.md
|
|
|
|
use esp_idf_svc::hal::gpio::PinDriver;
|
|
use esp_idf_svc::hal::prelude::*;
|
|
use esp_idf_svc::hal::uart::*;
|
|
use log::info;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
/// Incoming command from host.
|
|
#[derive(Debug, Deserialize)]
|
|
struct Request {
|
|
id: String,
|
|
cmd: String,
|
|
args: serde_json::Value,
|
|
}
|
|
|
|
/// Outgoing response to host.
|
|
#[derive(Debug, Serialize)]
|
|
struct Response {
|
|
id: String,
|
|
ok: bool,
|
|
result: String,
|
|
#[serde(skip_serializing_if = "Option::is_none")]
|
|
error: Option<String>,
|
|
}
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
esp_idf_svc::sys::link_patches();
|
|
esp_idf_svc::log::EspLogger::initialize_default();
|
|
|
|
let peripherals = Peripherals::take()?;
|
|
let pins = peripherals.pins;
|
|
|
|
// UART0: TX=21, RX=20 (ESP32) — ESP32-C3 may use different pins; adjust for your board
|
|
let config = UartConfig::new().baudrate(Hertz(115_200));
|
|
let mut uart = UartDriver::new(
|
|
peripherals.uart0,
|
|
pins.gpio21,
|
|
pins.gpio20,
|
|
Option::<esp_idf_svc::hal::gpio::Gpio0>::None,
|
|
Option::<esp_idf_svc::hal::gpio::Gpio1>::None,
|
|
&config,
|
|
)?;
|
|
|
|
info!("ZeroClaw ESP32 firmware ready on UART0 (115200)");
|
|
|
|
let mut buf = [0u8; 512];
|
|
let mut line = Vec::new();
|
|
|
|
loop {
|
|
match uart.read(&mut buf, 100) {
|
|
Ok(0) => continue,
|
|
Ok(n) => {
|
|
for &b in &buf[..n] {
|
|
if b == b'\n' {
|
|
if !line.is_empty() {
|
|
if let Ok(line_str) = std::str::from_utf8(&line) {
|
|
if let Ok(resp) = handle_request(line_str, &peripherals) {
|
|
let out = serde_json::to_string(&resp).unwrap_or_default();
|
|
let _ = uart.write(format!("{}\n", out).as_bytes());
|
|
}
|
|
}
|
|
line.clear();
|
|
}
|
|
} else {
|
|
line.push(b);
|
|
if line.len() > 400 {
|
|
line.clear();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
Err(_) => {}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn handle_request(
|
|
line: &str,
|
|
peripherals: &esp_idf_svc::hal::peripherals::Peripherals,
|
|
) -> anyhow::Result<Response> {
|
|
let req: Request = serde_json::from_str(line.trim())?;
|
|
let id = req.id.clone();
|
|
|
|
let result = match req.cmd.as_str() {
|
|
"capabilities" => {
|
|
// Phase C: report GPIO pins and LED pin (matches Arduino protocol)
|
|
let caps = serde_json::json!({
|
|
"gpio": [0, 1, 2, 3, 4, 5, 12, 13, 14, 15, 16, 17, 18, 19],
|
|
"led_pin": 2
|
|
});
|
|
Ok(caps.to_string())
|
|
}
|
|
"gpio_read" => {
|
|
let pin_num = req.args.get("pin").and_then(|v| v.as_u64()).unwrap_or(0) as i32;
|
|
let value = gpio_read(peripherals, pin_num)?;
|
|
Ok(value.to_string())
|
|
}
|
|
"gpio_write" => {
|
|
let pin_num = req.args.get("pin").and_then(|v| v.as_u64()).unwrap_or(0) as i32;
|
|
let value = req.args.get("value").and_then(|v| v.as_u64()).unwrap_or(0);
|
|
gpio_write(peripherals, pin_num, value)?;
|
|
Ok("done".into())
|
|
}
|
|
_ => Err(anyhow::anyhow!("Unknown command: {}", req.cmd)),
|
|
};
|
|
|
|
match result {
|
|
Ok(r) => Ok(Response {
|
|
id,
|
|
ok: true,
|
|
result: r,
|
|
error: None,
|
|
}),
|
|
Err(e) => Ok(Response {
|
|
id,
|
|
ok: false,
|
|
result: String::new(),
|
|
error: Some(e.to_string()),
|
|
}),
|
|
}
|
|
}
|
|
|
|
fn gpio_read(_peripherals: &esp_idf_svc::hal::peripherals::Peripherals, _pin: i32) -> anyhow::Result<u8> {
|
|
// TODO: implement input pin read — requires storing InputPin drivers per pin
|
|
Ok(0)
|
|
}
|
|
|
|
fn gpio_write(
|
|
peripherals: &esp_idf_svc::hal::peripherals::Peripherals,
|
|
pin: i32,
|
|
value: u64,
|
|
) -> anyhow::Result<()> {
|
|
let pins = peripherals.pins;
|
|
let level = value != 0;
|
|
|
|
match pin {
|
|
2 => {
|
|
let mut out = PinDriver::output(pins.gpio2)?;
|
|
out.set_level(esp_idf_svc::hal::gpio::Level::from(level))?;
|
|
}
|
|
13 => {
|
|
let mut out = PinDriver::output(pins.gpio13)?;
|
|
out.set_level(esp_idf_svc::hal::gpio::Level::from(level))?;
|
|
}
|
|
_ => anyhow::bail!("Pin {} not configured (add to gpio_write)", pin),
|
|
}
|
|
Ok(())
|
|
}
|