track_signal
Extract a byte range from CAN frames and track value changes over time to correlate with physical inputs.
Instructions
Extract a byte range from captured frames and show how the value changes over time. Use this to observe a candidate signal while correlating with physical inputs.
Args: can_id: CAN message ID. start_byte: First byte index (0-based). num_bytes: How many consecutive bytes to read (1–4). signed: Interpret as signed integer. scale: Physical = raw * scale + offset. offset: Physical = raw * scale + offset. byte_order: 'little_endian' (Intel) or 'big_endian' (Motorola).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| can_id | Yes | ||
| start_byte | Yes | ||
| num_bytes | No | ||
| signed | No | ||
| scale | No | ||
| offset | No | ||
| byte_order | No | little_endian |