PCAN-UDS functions using CAN FD
Posted: Tue 9. Oct 2018, 11:05
I'm using the PCAN-UDS.dll and the handle is initialised:
TPUDSCANHandle Channel;
TPUDSStatus status;
Channel = PUDS_USBBUS1;
status = UDS_Initialize(Channel, PUDS_BAUD_500K, 0, 0, 0);
For the requests the address infos are set in this kind:
NETADDRINFO->SA = PUDS_ISO_15765_4_ADDR_TEST_EQUIPMENT;
NETADDRINFO->TA = 0;
NETADDRINFO->TA_TYPE = PUDS_ADDRESSING_PHYSICAL;
NETADDRINFO->RA = 0x00;
NETADDRINFO->PROTOCOL = PUDS_PROTOCOL_ISO_15765_2_29B;
All is working without problems but now I must switch to CAN FD Messages. How I can make this in this PCAN-UDS system?
TPUDSCANHandle Channel;
TPUDSStatus status;
Channel = PUDS_USBBUS1;
status = UDS_Initialize(Channel, PUDS_BAUD_500K, 0, 0, 0);
For the requests the address infos are set in this kind:
NETADDRINFO->SA = PUDS_ISO_15765_4_ADDR_TEST_EQUIPMENT;
NETADDRINFO->TA = 0;
NETADDRINFO->TA_TYPE = PUDS_ADDRESSING_PHYSICAL;
NETADDRINFO->RA = 0x00;
NETADDRINFO->PROTOCOL = PUDS_PROTOCOL_ISO_15765_2_29B;
All is working without problems but now I must switch to CAN FD Messages. How I can make this in this PCAN-UDS system?