* fix(ci): SAST actually scans the code + drop deprecated flaky semgrep action Two real problems in the Static Application Security Testing job: 1. **It scanned a path that no longer exists.** `bandit -r src/` and `semgrep … src/` pointed at the repo-root `src/`, but the Python code moved to `archive/v1/src/` (64 .py files) when the runtime was rewritten in Rust. So the SAST scan matched nothing — a silent no-op (this is also why `bandit-results.sarif` was "Path does not exist" on recent runs). Fixed both to `archive/v1/src/`. 2. **Deprecated + redundant + flaky semgrep step.** The `returntocorp/semgrep-action@v1` step pulled `returntocorp/semgrep-agent:v1` from Docker Hub every run (intermittently timing out → red check, e.g. on #929) and is EOL. It was redundant: the pip `semgrep --sarif` step is what feeds GitHub Security; the action only pushed to the Semgrep cloud app via SEMGREP_APP_TOKEN. Removed it and folded its `p/docker` + `p/kubernetes` rulesets into the pip semgrep command, so coverage is preserved with no Docker pull. The job stays `continue-on-error: true` (non-gating). YAML validated. Co-Authored-By: claude-flow <ruv@ruv.net> * fix(protocol): resolve 0xC511_0004 magic collision (closes #928) Background `0xC511_0004` was assigned to two different packet formats in firmware — `EDGE_FUSED_MAGIC` (ADR-063, 48-byte `edge_fused_vitals_pkt_t`) and `WASM_OUTPUT_MAGIC` (ADR-040, variable-length `wasm_output_pkt_t`). Both were transmitted. The sensing-server only had a WASM parser for that magic and no fused-vitals parser, so on the ESP32-C6 + MR60BHA2 mmWave configuration the fused-vitals packet was silently misparsed as a malformed WASM output — `breathing_rate` was read as `event_count`, mmWave-fused vitals were lost, and spurious WASM events were emitted to subscribers. Fix 1. Reassign `WASM_OUTPUT_MAGIC` to `0xC511_0007` (next free slot per the registry in `rv_feature_state.h`). Smaller blast radius than moving fused-vitals — the registry already treats `0xC511_0004` as fused-vitals canonical and several years of deployed feature tracking depends on that assignment. 2. Add `parse_edge_fused_vitals` + `EdgeFusedVitalsPacket` in `wifi-densepose-sensing-server::main`. Byte layout taken directly from `edge_processing.h:129`, mirroring the firmware's `_Static_assert(sizeof(edge_fused_vitals_pkt_t) == 48)` so future firmware changes that grow the packet will break this parser loudly instead of silently. 3. Add a dispatch arm in the UDP receive loop. Fused-vitals is tried BEFORE WASM so a stale firmware (still emitting 0xC511_0004 with the WASM payload) fails to parse as fused-vitals (size mismatch), then fails to parse as WASM (magic mismatch on the new 0x...0007), and gets dropped — a deliberate "fail loud" outcome rather than the pre-fix silent garbage. 4. Update the registry comment in `rv_feature_state.h` to add the new 0x...0007 row. 5. Add five tests in a new `issue_928_magic_collision_tests` mod: - `parse_edge_fused_vitals_extracts_fields_correctly` - `parse_edge_fused_vitals_rejects_short_buffer` - `parse_edge_fused_vitals_rejects_wrong_magic` - `parse_wasm_output_rejects_legacy_0004_magic` - `parse_wasm_output_accepts_new_0007_magic` WebSocket payload Fused-vitals now broadcasts as `{"type": "edge_fused_vitals", ...}` with the mmWave-specific block nested under `mmwave`. Schema is additive — existing subscribers that only inspect `type` are unaffected; subscribers that switch on `type` gain a new branch. Deployment note This is a wire-protocol change. Firmware older than this commit that emits WASM output on 0xC511_0004 will lose its WASM event stream against an updated host (host expects 0xC511_0007). Per the issue discussion, "fail loud" is preferred to silent misparsing. Operators running C6+mmWave should reflash firmware concurrent with the host upgrade. Test results cargo test -p wifi-densepose-sensing-server --no-default-features --bin sensing-server → 122 passed / 0 failed (5 new + 117 existing, unchanged) Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
parent
69e61e3437
commit
2c136aca74
|
|
@ -12,7 +12,8 @@
|
||||||
* 0xC5110003 — ADR-069 feature vector (edge_processing.h)
|
* 0xC5110003 — ADR-069 feature vector (edge_processing.h)
|
||||||
* 0xC5110004 — ADR-063 fused vitals (edge_processing.h)
|
* 0xC5110004 — ADR-063 fused vitals (edge_processing.h)
|
||||||
* 0xC5110005 — ADR-039 compressed CSI (edge_processing.h)
|
* 0xC5110005 — ADR-039 compressed CSI (edge_processing.h)
|
||||||
* 0xC5110006 — ADR-081 feature state (this file) ← new
|
* 0xC5110006 — ADR-081 feature state (this file)
|
||||||
|
* 0xC5110007 — ADR-040 WASM output (wasm_runtime.h, reassigned per issue #928)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef RV_FEATURE_STATE_H
|
#ifndef RV_FEATURE_STATE_H
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,16 @@
|
||||||
|
|
||||||
#define WASM_MAX_MODULE_SIZE (128 * 1024) /**< Max .wasm binary size (128 KB). */
|
#define WASM_MAX_MODULE_SIZE (128 * 1024) /**< Max .wasm binary size (128 KB). */
|
||||||
#define WASM_STACK_SIZE (8 * 1024) /**< WASM execution stack (8 KB). */
|
#define WASM_STACK_SIZE (8 * 1024) /**< WASM execution stack (8 KB). */
|
||||||
#define WASM_OUTPUT_MAGIC 0xC5110004 /**< WASM output packet magic. */
|
/* Issue #928: WASM output was originally 0xC5110004, but that magic is
|
||||||
|
* canonically owned by ADR-063 fused vitals (edge_processing.h). Both packets
|
||||||
|
* were transmitted on the same magic, and the host parser only knew the WASM
|
||||||
|
* shape, so on the ESP32-C6 + MR60BHA2 mmWave config the 48-byte fused-vitals
|
||||||
|
* packet was being read as garbage WASM events. Reassigned to 0xC5110007 (next
|
||||||
|
* free slot in the registry — see rv_feature_state.h). Firmware older than
|
||||||
|
* this commit will silently lose its WASM event stream against an updated host
|
||||||
|
* — that's the deliberate "fail loud" choice over silent misparsing.
|
||||||
|
*/
|
||||||
|
#define WASM_OUTPUT_MAGIC 0xC5110007 /**< WASM output packet magic (post-#928). */
|
||||||
#define WASM_MAX_EVENTS 16 /**< Max events per output packet. */
|
#define WASM_MAX_EVENTS 16 /**< Max events per output packet. */
|
||||||
|
|
||||||
/* ---- WASM Event (5 bytes: u8 type + f32 value) ---- */
|
/* ---- WASM Event (5 bytes: u8 type + f32 value) ---- */
|
||||||
|
|
@ -54,7 +63,7 @@ typedef struct __attribute__((packed)) {
|
||||||
|
|
||||||
/* ---- WASM Output Packet ---- */
|
/* ---- WASM Output Packet ---- */
|
||||||
typedef struct __attribute__((packed)) {
|
typedef struct __attribute__((packed)) {
|
||||||
uint32_t magic; /**< WASM_OUTPUT_MAGIC = 0xC5110004. */
|
uint32_t magic; /**< WASM_OUTPUT_MAGIC = 0xC5110007 (issue #928). */
|
||||||
uint8_t node_id; /**< ESP32 node identifier. */
|
uint8_t node_id; /**< ESP32 node identifier. */
|
||||||
uint8_t module_id; /**< Module slot index. */
|
uint8_t module_id; /**< Module slot index. */
|
||||||
uint16_t event_count; /**< Number of events in this packet. */
|
uint16_t event_count; /**< Number of events in this packet. */
|
||||||
|
|
|
||||||
|
|
@ -45,13 +45,14 @@ pub fn parse_esp32_vitals(buf: &[u8]) -> Option<Esp32VitalsPacket> {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse a WASM output packet (magic 0xC511_0004).
|
/// Parse a WASM output packet (magic 0xC511_0007 — reassigned per issue #928;
|
||||||
|
/// the original 0xC511_0004 collided with ADR-063 fused vitals).
|
||||||
pub fn parse_wasm_output(buf: &[u8]) -> Option<WasmOutputPacket> {
|
pub fn parse_wasm_output(buf: &[u8]) -> Option<WasmOutputPacket> {
|
||||||
if buf.len() < 8 {
|
if buf.len() < 8 {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
let magic = u32::from_le_bytes([buf[0], buf[1], buf[2], buf[3]]);
|
let magic = u32::from_le_bytes([buf[0], buf[1], buf[2], buf[3]]);
|
||||||
if magic != 0xC511_0004 {
|
if magic != 0xC511_0007 {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1114,7 +1114,7 @@ fn parse_esp32_vitals(buf: &[u8]) -> Option<Esp32VitalsPacket> {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── ADR-040: WASM Output Packet (magic 0xC511_0004) ───────────────────────────
|
// ── ADR-040: WASM Output Packet (magic 0xC511_0007 — reassigned per #928) ─────
|
||||||
|
|
||||||
/// Single WASM event (type + value).
|
/// Single WASM event (type + value).
|
||||||
#[derive(Debug, Clone, Serialize)]
|
#[derive(Debug, Clone, Serialize)]
|
||||||
|
|
@ -1131,13 +1131,14 @@ struct WasmOutputPacket {
|
||||||
events: Vec<WasmEvent>,
|
events: Vec<WasmEvent>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse a WASM output packet (magic 0xC511_0004).
|
/// Parse a WASM output packet (magic 0xC511_0007 — reassigned per issue #928;
|
||||||
|
/// the original 0xC511_0004 was a collision with ADR-063 fused vitals).
|
||||||
fn parse_wasm_output(buf: &[u8]) -> Option<WasmOutputPacket> {
|
fn parse_wasm_output(buf: &[u8]) -> Option<WasmOutputPacket> {
|
||||||
if buf.len() < 8 {
|
if buf.len() < 8 {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
let magic = u32::from_le_bytes([buf[0], buf[1], buf[2], buf[3]]);
|
let magic = u32::from_le_bytes([buf[0], buf[1], buf[2], buf[3]]);
|
||||||
if magic != 0xC511_0004 {
|
if magic != 0xC511_0007 {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1169,6 +1170,187 @@ fn parse_wasm_output(buf: &[u8]) -> Option<WasmOutputPacket> {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ── ADR-063: Edge Fused Vitals Packet (magic 0xC511_0004) ─────────────────────
|
||||||
|
//
|
||||||
|
// 48-byte packed struct emitted by the ESP32-C6 + MR60BHA2 mmWave config when
|
||||||
|
// `mmwave_sensor_get_state().detected` is true. Byte layout from
|
||||||
|
// `firmware/esp32-csi-node/main/edge_processing.h` line 129 — kept in lockstep
|
||||||
|
// with the firmware's `_Static_assert(sizeof(edge_fused_vitals_pkt_t) == 48)`.
|
||||||
|
// Issue #928 surfaced that this magic was being parsed as WASM output and the
|
||||||
|
// fused vitals were silently lost. Adding the proper parser here.
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Serialize)]
|
||||||
|
struct EdgeFusedVitalsPacket {
|
||||||
|
node_id: u8,
|
||||||
|
/// Bit0=presence, Bit1=fall, Bit2=motion, Bit3=mmwave_present.
|
||||||
|
flags: u8,
|
||||||
|
/// Fused breathing rate in BPM (firmware sends BPM*100; we scale here).
|
||||||
|
breathing_rate_bpm: f32,
|
||||||
|
/// Fused heartrate in BPM (firmware sends BPM*10000; we scale here).
|
||||||
|
heartrate_bpm: f32,
|
||||||
|
rssi: i8,
|
||||||
|
n_persons: u8,
|
||||||
|
/// `mmwave_type_t` enum value from firmware.
|
||||||
|
mmwave_type: u8,
|
||||||
|
/// 0-100 fusion quality score.
|
||||||
|
fusion_confidence: u8,
|
||||||
|
motion_energy: f32,
|
||||||
|
presence_score: f32,
|
||||||
|
timestamp_ms: u32,
|
||||||
|
/// Raw mmWave heart rate (BPM).
|
||||||
|
mmwave_hr_bpm: f32,
|
||||||
|
/// Raw mmWave breathing rate (BPM).
|
||||||
|
mmwave_br_bpm: f32,
|
||||||
|
/// Distance to nearest target (cm).
|
||||||
|
mmwave_distance_cm: f32,
|
||||||
|
/// Target count from mmWave.
|
||||||
|
mmwave_targets: u8,
|
||||||
|
/// mmWave signal quality 0-100.
|
||||||
|
mmwave_confidence: u8,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Parse an ADR-063 edge fused vitals packet (magic 0xC511_0004, 48 bytes).
|
||||||
|
fn parse_edge_fused_vitals(buf: &[u8]) -> Option<EdgeFusedVitalsPacket> {
|
||||||
|
if buf.len() < 48 {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
let magic = u32::from_le_bytes([buf[0], buf[1], buf[2], buf[3]]);
|
||||||
|
if magic != 0xC511_0004 {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
|
let node_id = buf[4];
|
||||||
|
let flags = buf[5];
|
||||||
|
let breathing_raw = u16::from_le_bytes([buf[6], buf[7]]);
|
||||||
|
let heartrate_raw = u32::from_le_bytes([buf[8], buf[9], buf[10], buf[11]]);
|
||||||
|
let rssi = buf[12] as i8;
|
||||||
|
let n_persons = buf[13];
|
||||||
|
let mmwave_type = buf[14];
|
||||||
|
let fusion_confidence = buf[15];
|
||||||
|
let motion_energy = f32::from_le_bytes([buf[16], buf[17], buf[18], buf[19]]);
|
||||||
|
let presence_score = f32::from_le_bytes([buf[20], buf[21], buf[22], buf[23]]);
|
||||||
|
let timestamp_ms = u32::from_le_bytes([buf[24], buf[25], buf[26], buf[27]]);
|
||||||
|
let mmwave_hr_bpm = f32::from_le_bytes([buf[28], buf[29], buf[30], buf[31]]);
|
||||||
|
let mmwave_br_bpm = f32::from_le_bytes([buf[32], buf[33], buf[34], buf[35]]);
|
||||||
|
let mmwave_distance_cm = f32::from_le_bytes([buf[36], buf[37], buf[38], buf[39]]);
|
||||||
|
let mmwave_targets = buf[40];
|
||||||
|
let mmwave_confidence = buf[41];
|
||||||
|
// buf[42..48] are firmware reserved fields (reserved3 u16 + reserved4 u32).
|
||||||
|
|
||||||
|
Some(EdgeFusedVitalsPacket {
|
||||||
|
node_id,
|
||||||
|
flags,
|
||||||
|
breathing_rate_bpm: breathing_raw as f32 / 100.0,
|
||||||
|
heartrate_bpm: heartrate_raw as f32 / 10000.0,
|
||||||
|
rssi,
|
||||||
|
n_persons,
|
||||||
|
mmwave_type,
|
||||||
|
fusion_confidence,
|
||||||
|
motion_energy,
|
||||||
|
presence_score,
|
||||||
|
timestamp_ms,
|
||||||
|
mmwave_hr_bpm,
|
||||||
|
mmwave_br_bpm,
|
||||||
|
mmwave_distance_cm,
|
||||||
|
mmwave_targets,
|
||||||
|
mmwave_confidence,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod issue_928_magic_collision_tests {
|
||||||
|
//! Issue #928 — `0xC511_0004` was being parsed as WASM output, eating the
|
||||||
|
//! C6+mmWave fused-vitals packets. After this fix, `0xC511_0004` routes to
|
||||||
|
//! `parse_edge_fused_vitals` and WASM output owns the freshly-allocated
|
||||||
|
//! `0xC511_0007` slot. Tests guard both halves of the swap.
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
/// Build a 48-byte synthetic fused-vitals packet matching the firmware's
|
||||||
|
/// `edge_fused_vitals_pkt_t` layout from `edge_processing.h:129`.
|
||||||
|
fn build_fused_vitals_packet() -> Vec<u8> {
|
||||||
|
let mut buf = vec![0u8; 48];
|
||||||
|
buf[0..4].copy_from_slice(&0xC511_0004u32.to_le_bytes());
|
||||||
|
buf[4] = 9; // node_id
|
||||||
|
buf[5] = 0b0000_1001; // flags: presence | mmwave_present
|
||||||
|
buf[6..8].copy_from_slice(&1600u16.to_le_bytes()); // breathing 16.00 BPM
|
||||||
|
buf[8..12].copy_from_slice(&720_000u32.to_le_bytes()); // heartrate 72.0 BPM
|
||||||
|
buf[12] = (-55i8) as u8; // rssi
|
||||||
|
buf[13] = 1; // n_persons
|
||||||
|
buf[14] = 2; // mmwave_type
|
||||||
|
buf[15] = 85; // fusion_confidence
|
||||||
|
buf[16..20].copy_from_slice(&0.42f32.to_le_bytes()); // motion_energy
|
||||||
|
buf[20..24].copy_from_slice(&0.95f32.to_le_bytes()); // presence_score
|
||||||
|
buf[24..28].copy_from_slice(&1_234_567u32.to_le_bytes()); // timestamp_ms
|
||||||
|
buf[28..32].copy_from_slice(&71.5f32.to_le_bytes()); // mmwave_hr_bpm
|
||||||
|
buf[32..36].copy_from_slice(&15.8f32.to_le_bytes()); // mmwave_br_bpm
|
||||||
|
buf[36..40].copy_from_slice(&182.0f32.to_le_bytes()); // mmwave_distance_cm
|
||||||
|
buf[40] = 1; // mmwave_targets
|
||||||
|
buf[41] = 90; // mmwave_confidence
|
||||||
|
// bytes 42..48 — firmware reserved fields, left as zero
|
||||||
|
buf
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_edge_fused_vitals_extracts_fields_correctly() {
|
||||||
|
let buf = build_fused_vitals_packet();
|
||||||
|
let pkt = parse_edge_fused_vitals(&buf).expect("must parse a well-formed packet");
|
||||||
|
assert_eq!(pkt.node_id, 9);
|
||||||
|
assert_eq!(pkt.flags, 0b0000_1001);
|
||||||
|
assert!((pkt.breathing_rate_bpm - 16.0).abs() < 1e-3, "breathing scale 100");
|
||||||
|
assert!((pkt.heartrate_bpm - 72.0).abs() < 1e-3, "heartrate scale 10000");
|
||||||
|
assert_eq!(pkt.rssi, -55);
|
||||||
|
assert_eq!(pkt.n_persons, 1);
|
||||||
|
assert_eq!(pkt.mmwave_type, 2);
|
||||||
|
assert_eq!(pkt.fusion_confidence, 85);
|
||||||
|
assert!((pkt.motion_energy - 0.42).abs() < 1e-6);
|
||||||
|
assert!((pkt.presence_score - 0.95).abs() < 1e-6);
|
||||||
|
assert_eq!(pkt.timestamp_ms, 1_234_567);
|
||||||
|
assert!((pkt.mmwave_hr_bpm - 71.5).abs() < 1e-6);
|
||||||
|
assert!((pkt.mmwave_br_bpm - 15.8).abs() < 1e-3);
|
||||||
|
assert!((pkt.mmwave_distance_cm - 182.0).abs() < 1e-6);
|
||||||
|
assert_eq!(pkt.mmwave_targets, 1);
|
||||||
|
assert_eq!(pkt.mmwave_confidence, 90);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_edge_fused_vitals_rejects_short_buffer() {
|
||||||
|
let buf = build_fused_vitals_packet();
|
||||||
|
// Truncate to 47 bytes — one short of the 48-byte minimum.
|
||||||
|
assert!(parse_edge_fused_vitals(&buf[..47]).is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_edge_fused_vitals_rejects_wrong_magic() {
|
||||||
|
let mut buf = build_fused_vitals_packet();
|
||||||
|
buf[0..4].copy_from_slice(&0xC511_0007u32.to_le_bytes()); // WASM magic, not fused
|
||||||
|
assert!(parse_edge_fused_vitals(&buf).is_none());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_wasm_output_rejects_legacy_0004_magic() {
|
||||||
|
// The old WASM magic collided with fused vitals — must no longer be
|
||||||
|
// accepted. A real fused-vitals packet starts with 0xC511_0004 and
|
||||||
|
// would have been misparsed before this fix.
|
||||||
|
let buf = build_fused_vitals_packet();
|
||||||
|
assert!(parse_wasm_output(&buf).is_none(),
|
||||||
|
"issue #928: WASM parser must NOT accept 0xC511_0004");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_wasm_output_accepts_new_0007_magic() {
|
||||||
|
// Build a tiny well-formed WASM output packet on the new magic.
|
||||||
|
let mut buf = vec![0u8; 8];
|
||||||
|
buf[0..4].copy_from_slice(&0xC511_0007u32.to_le_bytes());
|
||||||
|
buf[4] = 5; // node_id
|
||||||
|
buf[5] = 1; // module_id
|
||||||
|
buf[6..8].copy_from_slice(&0u16.to_le_bytes()); // event_count = 0
|
||||||
|
let pkt = parse_wasm_output(&buf).expect("0xC511_0007 must parse");
|
||||||
|
assert_eq!(pkt.node_id, 5);
|
||||||
|
assert_eq!(pkt.module_id, 1);
|
||||||
|
assert!(pkt.events.is_empty());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// ── ESP32 UDP frame parser ───────────────────────────────────────────────────
|
// ── ESP32 UDP frame parser ───────────────────────────────────────────────────
|
||||||
|
|
||||||
fn parse_esp32_frame(buf: &[u8]) -> Option<Esp32Frame> {
|
fn parse_esp32_frame(buf: &[u8]) -> Option<Esp32Frame> {
|
||||||
|
|
@ -4979,7 +5161,45 @@ async fn udp_receiver_task(state: SharedState, udp_port: u16) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ADR-040: Try WASM output packet (magic 0xC511_0004).
|
// ADR-063: Try edge fused vitals packet (magic 0xC511_0004).
|
||||||
|
// Must come BEFORE the WASM parser — issue #928: these two
|
||||||
|
// packet types shared a magic and the WASM parser was eating
|
||||||
|
// fused-vitals frames on the C6+mmWave config. The reassign of
|
||||||
|
// WASM_OUTPUT_MAGIC → 0xC511_0007 (firmware side) plus this
|
||||||
|
// dedicated parser resolve the collision.
|
||||||
|
if let Some(fused) = parse_edge_fused_vitals(&buf[..len]) {
|
||||||
|
debug!(
|
||||||
|
"Edge fused vitals from {src}: node={} br={:.1} hr={:.1} \
|
||||||
|
mmwave_targets={} fusion_conf={}",
|
||||||
|
fused.node_id, fused.breathing_rate_bpm, fused.heartrate_bpm,
|
||||||
|
fused.mmwave_targets, fused.fusion_confidence,
|
||||||
|
);
|
||||||
|
let s = state.write().await;
|
||||||
|
if let Ok(json) = serde_json::to_string(&serde_json::json!({
|
||||||
|
"type": "edge_fused_vitals",
|
||||||
|
"node_id": fused.node_id,
|
||||||
|
"breathing_rate_bpm": fused.breathing_rate_bpm,
|
||||||
|
"heartrate_bpm": fused.heartrate_bpm,
|
||||||
|
"n_persons": fused.n_persons,
|
||||||
|
"fusion_confidence": fused.fusion_confidence,
|
||||||
|
"mmwave": {
|
||||||
|
"hr_bpm": fused.mmwave_hr_bpm,
|
||||||
|
"br_bpm": fused.mmwave_br_bpm,
|
||||||
|
"distance_cm": fused.mmwave_distance_cm,
|
||||||
|
"targets": fused.mmwave_targets,
|
||||||
|
"confidence": fused.mmwave_confidence,
|
||||||
|
"type": fused.mmwave_type,
|
||||||
|
},
|
||||||
|
"motion_energy": fused.motion_energy,
|
||||||
|
"presence_score": fused.presence_score,
|
||||||
|
"timestamp_ms": fused.timestamp_ms,
|
||||||
|
})) {
|
||||||
|
let _ = s.tx.send(json);
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ADR-040: Try WASM output packet (magic 0xC511_0007 post-#928).
|
||||||
if let Some(wasm_output) = parse_wasm_output(&buf[..len]) {
|
if let Some(wasm_output) = parse_wasm_output(&buf[..len]) {
|
||||||
debug!(
|
debug!(
|
||||||
"WASM output from {src}: node={} module={} events={}",
|
"WASM output from {src}: node={} module={} events={}",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue