Search found 3 matches

by awaisZt
Thu 5. Dec 2024, 00:43
Forum: PCAN-ISO TP
Topic: Configure ISTOP to send large data using segmented CAN-FD
Replies: 4
Views: 11999

Re: Configure ISTOP to send large data using segmented CAN-FD

Awesome, that code worked like a charm!

Thanks a lot. I would say it will be great if you could add this as a sample example for other people's use.
by awaisZt
Tue 3. Dec 2024, 20:44
Forum: PCAN-ISO TP
Topic: Configure ISTOP to send large data using segmented CAN-FD
Replies: 4
Views: 11999

Re: Configure ISTOP to send large data using segmented CAN-FD

Thanks for your reply.

Actually I don't need to configure any receiver. My understanding is that - the way python isotp module works - that I can simply send a bulk data using istotp api (configured for canfd frames) provided by PeakSystem DLL.

I have cleaned up the code, and I can't still ...
by awaisZt
Mon 2. Dec 2024, 19:34
Forum: PCAN-ISO TP
Topic: Configure ISTOP to send large data using segmented CAN-FD
Replies: 4
Views: 11999

Configure ISTOP to send large data using segmented CAN-FD

Hello,

I am trying to send a large set of data using ISO-TP with segmented CAN-FD frames. However, I see errors:

Python code:

# Allocate tx message
tx_msg = cantp_msg()
res = objPCANIsotp.MsgDataAlloc_2016(tx_msg, PCANTP_MSGTYPE_ISOTP)
print("Allocate tx message: ", STATUS_OK_KO(res))

mapping ...