-
-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem when executing multiple transfer data in sequence for firmware update #137
Comments
So you say that the python code is sending frames too fast? And the server part doesn't like it and stops responding then python reports a timeout? If that is so. Can you make a log with timestamps. What version of the module do you use? What is your hardware and os? |
That's right! OS Modules Interfaces If necessary, log files are attached in the zip file. |
You haven't enabled the "isotp" logger in debug mode, I can only see the UDS module debug logs. The stack sends data from app (uds) to transport (isotp) to link layer (CAN) from top to bottom, but we lack confirmations from bottom up. Basically, the isotp layers sends 2 messages at 2ms interval, but the CAN layer (your driver) seems to buffer those message and sends them together. Any chance your bus load is too high and the driver can't send right away? How do you interact with your vector hardware? python-can? |
That's right! We use python-can to interact with the CAN vector interface. Here are some more detailed logs (debug "isotp" enabled and CAN log recorded with Busmaster) about a failed TransferData. Also includes a screenshot of bus statistics. Highlight for this part of the log, where stmin's were identified as being too high and too low. 14:19:40:6483 Rx 1 0x18DAEFF1 x 8 23 36 2C A0 45 25 61 92 |
Hi! I'm using TransferData service for firmware update process, but at some point when sending CFs, communication ends up being lost (generating TimeoutException) randomly, after a certain amount of time.
When testing with Busmaster, I noticed that the stmin times are being respected, however, whenever this failure is about to occur, the stmin value, which is received by the receiver, is 2ms, but sometimes the data sending does not respect this, and sends in 0.5ms or 1.6ms, approximately.
This occurs when the generator is consuming the payload bytes to send a data block via the TransferData service.
Below is an example of a firmware update attempt that failed because in a certain payload, it did not respect the stmin:
The text was updated successfully, but these errors were encountered: