CAN SENDER

BUY NOW

Step-by-Step Instructions

1. Connecting the Device:


- Connect the CAN-SENDER to the power supply in the vehicle or on the test bench.
- Ensure that all wires are properly connected to the CAN bus.


2. Selecting CAN Speed:

- Go to address 0x00 to set the CAN speed.
Enter :
- 0x00 for 125 kbps.
- 0x01 for 250 kbps.
- 0x02 for 500 kbps.
- 0x03 for 800 kbps.

3. Configuring CAN Frames:

00 00 00 11 011 22 33 44 55 66 77 88 FF FF 01
- Frame ID
- 0 – standard frame, 1 – extended frame.
- Data length (0-8 bytes).
- Data: Enter the corresponding data values.
- Time interval (e.g., how often the frame should be sent).
- Cycle count: How many times the frame should be sent.

4. Monitoring LEDs:

- Red LED blinks, green LED off: CAN speed error or improperly soldered EEPROM memory.
- Red LED on, green LED off: No data entry to send.
- Red LED on, green LED blinks every 800ms: Data is being sent correctly.

Examples of Configuration:

1. Sending a single standard frame immediately after power on

Configuration:

00 00 00 11 08 11 22 33 44 55 66 77 88 FF FF 01

Description:
- Frame ID: 0x11 (Standard ID)
- Frame type: Standard (0x08)
- Data length: 8 bytes (0x08)
- Data: 11 22 33 44 55 66 77 88 (8 bytes of data)
- Interval: FF FF (Single send immediately after power on)
- Cycle count: 1

2. Sending a single extended frame immediately after power on

Configuration:

00 00 00 11 18 11 22 33 44 55 66 77 88 FF FF 01

Description:
- Frame ID: 0x11 (Extended ID)
- Frame type: Extended (0x18)
- Data length: 8 bytes (0x08)
- Data: 11 22 33 44 55 66 77 88 (8 bytes of data)
- Interval: FF FF (Single send immediately after power on)
- Cycle count: 1

3. Sending a single standard frame 4 seconds after power on

Configuration:

00 00 00 11 08 11 22 33 44 55 66 77 88 40 00 01

Description:
- Frame ID: 0x11 (Standard ID)
- Frame type: Standard (0x08)
- Data length: 8 bytes (0x08)
- Data: 11 22 33 44 55 66 77 88 (8 bytes of data)
- Interval: 40 00 (4-second delay)
- Cycle count: 1

4. Sending a standard frame 10 times every 100ms

Configuration:

00 00 00 11 08 11 22 33 44 55 66 77 88 01 00 10

Description:
- Frame ID: 0x11 (Standard ID)
- Frame type: Standard (0x08)
- Data length: 8 bytes (0x08)
- Data: 11 22 33 44 55 66 77 88 (8 bytes of data)
- Interval: 01 00 (100ms interval between cycles)
- Cycle count: 10

5. Sending a frame with 5 bytes of data

Configuration:

00 00 00 11 05 11 22 33 44 55 FF FF FF FF FF 01

Description:
- Frame ID: 0x11 (Standard ID)
- Frame type: Standard (0x05 – 5 bytes of data)
- Data: 11 22 33 44 55 (5 bytes of data)
- Interval: FF FF (Single send immediately after power on)
- Cycle count: 1


6. Sending a frame with 8 bytes of data with a 100ms interval (loop)

Configuration:

00 00 00 11 08 11 22 33 44 55 66 77 88 01 00 FF

Description:
- Frame ID: 0x11 (Standard ID)
- Frame type: Standard (0x08)
- Data length: 8 bytes (0x08)
- Data: 11 22 33 44 55 66 77 88 (8 bytes of data)
- Interval: 01 00 (100ms interval)
- Cycle count: FF (loop every 100ms)