UDS Control Flow does not start
Posted: Tue 19. Mar 2019, 17:49
Hello everyone,
I'm trying to send large amounts of data (a few kBytes) and want to use the APIs own Options.
So I'm starting of with the SvcRequestDownload (no comp/encryp) and other correct data.
Next I want to use SvcTransferData.
Example data as follows:
But only the First Frame with the first 4 Bytes is sent, the other data is not sent out.
What steps do I have to take to send all the data?
And is it possible to track the progress of the sending?
Thanks in Advance!
I'm trying to send large amounts of data (a few kBytes) and want to use the APIs own Options.
So I'm starting of with the SvcRequestDownload (no comp/encryp) and other correct data.
Next I want to use SvcTransferData.
Example data as follows:
Code: Select all
byte[] Buffer = new byte[2000]; (with content)
ushort bufferLength = 2000;
UDSApi.SvcTransferData(UDSApi.PUDS_USBBUS1, ref request, 0x01, Buffer, bufferLength);
What steps do I have to take to send all the data?
And is it possible to track the progress of the sending?
Thanks in Advance!