Search found 8 matches

by KateS
Tue 30. Apr 2019, 07:32
Forum: PCAN-UDS
Topic: Problem with DTC reading
Replies: 4
Views: 6121

Re: Problem with DTC reading

Looks like you are right, thank you
by KateS
Mon 29. Apr 2019, 14:19
Forum: PCAN-UDS
Topic: Problem with DTC reading
Replies: 4
Views: 6121

Re: Problem with DTC reading

Okey. I use 0x19 services with different subfunctions (0x02 and 0x03). In my case they shall show one and the same error (for example 0x07111E) , but they don't.
In PCAN View I see
DTC in PCAN View.PNG
But I don't see the same in my code. Response for 0x19 service and 0x02 subfunction is empty for ...
by KateS
Fri 19. Apr 2019, 10:58
Forum: PCAN-UDS
Topic: Problem with DTC reading
Replies: 4
Views: 6121

Problem with DTC reading

Hello,
I'm currently developing a program on C# using your APIs and I need read DTC from ECU.I use SvcReadDTCInformation(), but have problem with response.
result = UDSApi.SvcReadDTCInformation(Channel, ref request, service, mask);
if (result == TPUDSStatus.PUDS_ERROR_OK)
{
result = UDSApi ...
by KateS
Tue 15. Jan 2019, 09:46
Forum: PCAN-UDS
Topic: Sending non standard messages
Replies: 6
Views: 6841

Re: Sending non standard messages

A-a-a-a, thank you so much!
by KateS
Tue 15. Jan 2019, 09:36
Forum: PCAN-UDS
Topic: Sending non standard messages
Replies: 6
Views: 6841

Re: Sending non standard messages

Thanks for Your answer!
Nice to hear that it possible, but I don't understand until the end how I can make do this. Can you give me an example how to send RAW CAN Frame? Or maybe which parameters, functions are need to it.

Best Regards,
Katerina
by KateS
Tue 15. Jan 2019, 09:08
Forum: PCAN-UDS
Topic: Sending non standard messages
Replies: 6
Views: 6841

Re: Sending non standard messages

I' m using CAN and want to send messages like on this photo. To send first message in my program on C# I use your service UDSApi.Write(UDSApi.PUDS_USBBUS1, ref request). Your services are made according to ISO 14229 and 15765, it means that if I want to send message like in your example in ...
by KateS
Tue 15. Jan 2019, 07:04
Forum: PCAN-UDS
Topic: Sending non standard messages
Replies: 6
Views: 6841

Sending non standard messages

Hello,
I'm currently developing a program on C# using your APIs and I need to send not standard messages, like 8 bytes consisting only of units and twos. Units I'm sending by UDSApi Write(), where set request.LEN (0x111) and request.DATA(6 bytes with 0x11). I understand that this is only possible ...
by KateS
Mon 23. Jul 2018, 13:59
Forum: PCAN-UDS
Topic: Time of send data
Replies: 4
Views: 5968

Time of send data

Hello,
I'm currently developing a tester using your APIs and I have some question about methods in PCAN_UDS.dll.
I'm sending Calibration Data with SvcTransferData() and then waiting for response from ECU with WaitForService().
Measured working time is in twice of much as in other program (vFlash ...