Search found 2 matches

by Emre220601
Wed 18. Oct 2023, 16:18
Forum: PCAN-USB
Topic: PCAN-USB Message Duplication Problem
Replies: 3
Views: 1949

Re: PCAN-USB Message Duplication Problem

Hello,

for both devices in the properties of PEAK Hardware it says 8.6. I can show a short code snippet which I'm currently using if that helps:

pcan = PCANBasic()

pcan.Initialize(PCAN_USBBUS1, PCAN_BAUD_500K)
pcan.Initialize(PCAN_USBBUS2, PCAN_BAUD_500K)

while True:
msg_1 = createPCANMessage ...
by Emre220601
Wed 18. Oct 2023, 15:26
Forum: PCAN-USB
Topic: PCAN-USB Message Duplication Problem
Replies: 3
Views: 1949

PCAN-USB Message Duplication Problem

Hello,

I'm currently using three PCAN-USB devices connected to a PCAN-Router Pro. I'm working on reading and writing data using Python with the PCANBasic.py API.

However, I'm encountering an issue. When I attempt to send a message with my second PCAN-USB device, it also sends the same message via ...