ethercat-linux/Cargo.toml
Tony Cao 309aaba342 EL6695 8-byte bidirectional exchange with per-byte verification
- 8B PDO config: ULINT-sized payload, no 0x1A01 diag PDO on SM3
  (device rejected SM3=8 with diag assigned: 'size not allowed, min/max 0xa')
- twin_layout_blob_sized(): single 64-bit mapping entry for 8B payloads
- Ticker: per-byte XOR 0x5A transform in 8B mode so TwinCAT can verify
  every byte individually (1KB path unchanged, const-guarded)
- TwinCAT automation scripts: deploy with RPC retry, LinkVariables-based
  whole-array relink (element links only carry 1 byte), ADS watch, diag
- Docs: 8B design, verification methodology, test report
2026-07-27 19:01:05 +08:00

24 lines
636 B
TOML

[package]
name = "el6695-rt"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
description = "J1900 <-> TwinCAT 1 kHz communication verification over an EL6695 EtherCAT bridge"
[dependencies]
ethercrab = { version = "0.7", default-features = false, features = ["std"] }
futures-lite = "2"
libc = "0.2"
crc32fast = "1.4"
# Locally patched ethercrab 0.7.1: adds `sdo_write_complete` (single-message
# Complete Access download, required by EL6695 firmware) and `send_raw_coe`.
[patch.crates-io]
ethercrab = { path = "vendor/ethercrab" }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1