Choose the adapter protocol
Embedder supports two CAN-over-serial codecs:
Embedder selects
fdcanusb when the port’s product metadata contains fdcanusb. Other serial CAN adapters use SLCAN.
Connect to classic CAN
Choose one of the SLCAN rates:- 10, 20, 50, 100, 125, 250, 500, or 800 kbit/s
- 1 Mbit/s
Connect to CAN-FD
The fdcanusb codec does not send a bitrate handshake. Set the arbitration and data rates with the adapter’s own configuration before you connect.FD marks a CAN-FD frame, and BRS marks bit-rate switching.
Send a test frame
Useid#data for either adapter:
123#R8.
fdcanusb also accepts its native form:
Decode application signals
CAN payload bytes do not identify their application meaning. Before Embedder interprets them, point it at a database or let it search the project. The database workflow recognizes:- DBC (
.dbc) - KCD (
.kcd) - SYM (
.sym) - AUTOSAR XML (
.arxml)
.embedder/can/; it does not load a DBC, KCD, SYM, or ARXML file directly.
1
Find the database
Ask Embedder to search project files and configuration for CAN database references. If several files exist, identify the bus or ECU you are monitoring.
2
Convert the needed definitions
Embedder writes only the messages and signals required for the investigation to a version 1 JSON profile. It preserves the database IDs, frame format, lengths, bit positions, byte order, signedness, scale, offset, units, and enumerated values that the Monitor can decode.
3
Select the profile
Put profiles in
.embedder/can/. The CAN toolbar lists each .json file and lets you pin one.4
Compare decoded and raw data
Enable Decoded, then keep the raw bytes visible in your report. Frames without a matching definition remain raw.
Write a Monitor profile
Use this shape for an ordinary bit-field message:.embedder/can/codebase-derived.json
mask when a family of arbitration IDs shares one layout. The parser also accepts byte-indexed integer fields and packed BCD values. For project-specific ASCII records, set payload to ascii_record and define prefixed fields.
Keep hexadecimal or decimal IDs consistent within one profile. Validate 11-bit versus 29-bit format and the exact payload length against captured traffic.
Select and refresh profiles
The Monitor watches.embedder/can/*.json. It refreshes when a profile is created, changed, or deleted.
Auto selection uses this order:
- A profile you pinned in the CAN toolbar
.embedder/can/codebase-derived.json- The first profile by filename
Read decoded output
A report should pair meaning with evidence:Fix CAN problems
The adapter rejects the connection
The adapter rejects the connection
For SLCAN, select one of the supported bitrates. For fdcanusb, configure the bus on the device and leave the Monitor bitrate alone.
Every frame is raw
Every frame is raw
Confirm that CAN mode is enabled, the profile is valid version 1 JSON, the selected path is active, and the message ID, extended flag, and length match.
A signal value is wrong
A signal value is wrong
Recheck start bit, length, byte order, signedness, factor, and offset against the database. Keep the raw payload beside the decoded value.
No database was found
No database was found
Attach or name a DBC, KCD, SYM, or ARXML file. Approve source inference only when no authoritative database exists.
An unresolved frame disappeared in decoded mode
An unresolved frame disappeared in decoded mode
Switch to Raw and verify the input line. A frame without a matching message should remain visible as raw output; an invalid line may not parse as a CAN frame.
Serial transports
Configure the serial port that carries CAN traffic.
Logic analyzer
Capture the physical bus when the adapter or transceiver is suspect.

