scan_payload_for_value
Scan CAN bus payload frames for a specific decimal value, searching across byte offsets with configurable endianness and limits.
Instructions
Scan CAN bus payload bytes for a specific decimal value.
Searches for frames where consecutive bytes in the payload match the binary representation of the given decimal value. Supports both big-endian and little-endian byte orders.
Args: byte_value: Decimal value to search for (0 to unlimited, auto-calculates byte width) endianness: Byte order ("big" or "little"), default: "big" start_offset: Start searching from this byte offset (default: 0) end_offset: Stop searching at this byte offset (default: None, searches to end) limit: Maximum frames to return (default: 1000) session_id: Session identifier
Returns: Matching frames with match position and context
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| byte_value | Yes | ||
| end_offset | No | ||
| endianness | No | big | |
| session_id | No | ||
| start_offset | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||