Coder Social home page Coder Social logo

Comments (4)

franksmicro avatar franksmicro commented on September 16, 2024

Interesting. It would appear that the OBD is returning speed data without being asked. Maybe when requesting speed data the first time, it returns the response more than once. Or maybe it regularly sends speed data wihout being asked. You don't have any other OBD devices (such as add-on instruments) that would be requesting OBD data, do you?

You could try receiving without sending and seeing if you regularly get speed data and perhaps other data back (if you are curious as to the cause). Regardless, it is probably best to check that the received PID matches. Congratulations on fixing the code to do this. I will test the changes in my car over the next week or so and then add in your changes on github.

Thanks,
Frank

from arduino.

dcm684 avatar dcm684 commented on September 16, 2024

I saw that you added the check for the PID. In my testing I noticed that my change is not completely optimal. If a bad PID is received and then no data is received, it is possible that the system will have to wait for 5 timeout periods. As a result I put in an extra case to handle a timeout.

noMatch++;
//Change made below
if ((noMatch >= 5) || (rxSuccess = false))
{
    return 0;
}

from arduino.

franksmicro avatar franksmicro commented on September 16, 2024

Thanks. I will change it to:

    noMatch++;
    if (!rxSuccess || noMatch >= 5)
    {
        return 0;
    }

Do you want me to put credit to "dcm684" in the code for these two changes?

Frank

On Tue, Jul 12, 2011 at 4:41 PM, dcm684 <
[email protected]>wrote:

I saw that you added the check for the PID. In my testing I noticed that my
change is not completely optimal. If a bad PID is received and then no data
is received, it is possible that the system will have to wait for 5 timeout
periods. As a result I put in an extra case to handle a timeout.

noMatch++;
//Change made below
if ((noMatch >= 5) || (rxSuccess = false))
{
return 0;
}

Reply to this email directly or view it on GitHub:
#1 (comment)

from arduino.

dcm684 avatar dcm684 commented on September 16, 2024

Frank, that would be great if you attribute those changes to dcm684.

from arduino.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.