Search:

Type: Posts; User: steveo

Page 1 of 4 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    1,069
    Views
    685,543

    sorry eehack wont help with that one thing...

    sorry eehack wont help with that

    one thing i've done is get going on a flat road and get your GPS speed from your phone or whatever, then also note the speed on your speedometer. then divide and...
  2. Replies
    1,069
    Views
    685,543

    by the way i've never actually played with a P66...

    by the way i've never actually played with a P66 ecm.

    it was 'fairly similar' to an LT1.....so me and kur4o wrote the P66 V6 flash routine in flashhack together via email, with him on the other...
  3. Replies
    1,069
    Views
    685,543

    here's the thing the VE table is big. i think...

    here's the thing

    the VE table is big. i think around 450 bytes. that's almost half a kilobyte.

    the VE table is in flash rom. to tune something in realtime on this type of ECM over the ALDL...
  4. Replies
    1,069
    Views
    685,543

    you could do a scroll area and resizable window,...

    you could do a scroll area and resizable window, i did not build eehack's ui like this because i started working on it before i knew how QT uis are supposed to work.
  5. Replies
    1,069
    Views
    685,543

    the widebands, and every other input, is...

    the widebands, and every other input, is runtime-configured through the definition csv file (ee_definition.csv). adding new or different inputs is pretty easy.

    if you use the special field...
  6. Replies
    1,069
    Views
    685,543

    it's really awesome you got that working. i'm...

    it's really awesome you got that working. i'm impressed

    if i have some time, i'll try to figure a better stragegy for load/save of that table.
  7. Replies
    1,069
    Views
    685,543

    i've used the same headers and ran a different o2...

    i've used the same headers and ran a different o2 delay time on the further sensor, that helped a bit, but ended up going open loop too
  8. Replies
    1,069
    Views
    685,543

    if you just want a clickable send button, you...

    if you just want a clickable send button, you shouldn't use the toggled signal, you should use the clicked signal. toggled is usually for check boxes
  9. Replies
    1,069
    Views
    685,543

    i dont quite understand what you're trying to do,...

    i dont quite understand what you're trying to do, do you have a push button 'switch' to enable your maf thing, and then the controls will send updates when changed? or do you want to have a 'send'...
  10. Replies
    1,069
    Views
    685,543

    it should work fine, i planned for that (but...

    it should work fine, i planned for that (but never tested it). each side's key challenge/response is handled completely separately
  11. Replies
    1,069
    Views
    685,543

    the way it's supposed to work is you call...

    the way it's supposed to work is you call m4_updated.request(); whenever you're done changing the mode 4 data, then it'll send it at the next available time slot. there's no way to send immediately,...
  12. Replies
    1,069
    Views
    685,543

    if i understand correctly you need to get the low...

    if i understand correctly you need to get the low and high byte to throw them into the mode4 byte array. use some bitwise operators like this



    uint16_t value = ui->your_spinbox->value();
    char...
  13. Replies
    1,069
    Views
    685,543

    yeah i broke the memo function somehow a few...

    yeah i broke the memo function somehow a few versions ago and nobody noticed, because nobody uses it. i could look over my github commits and try to figure out what did it.



    that's a great...
  14. Replies
    1,069
    Views
    685,543

    if the ecm doesn't care how long it is, might be...

    if the ecm doesn't care how long it is, might be easiest to just make it longer and leave it like that?

    i could figure a way to make it dynamic too if you really want
  15. Replies
    1,069
    Views
    685,543

    oh there is a UI field for displaying the mode 4...

    oh there is a UI field for displaying the mode 4 raw string too, but i doubt it'll cause trouble.

    of course after you test all this, you could carefully make length changes at runtime if you used...
  16. Replies
    1,069
    Views
    685,543

    not too hard. i should have made a #define for...

    not too hard. i should have made a #define for the mode 4 message length, but i never thought it would change. lets make it a define.

    in config.h, add a line:


    #define M4_LENGTH 12

    in...
  17. Replies
    1,069
    Views
    685,543

    if you have stored long term trims and switch to...

    if you have stored long term trims and switch to open loop, in some conditions they're used
  18. Replies
    1,069
    Views
    685,543

    actually dual wideband support works...

    actually dual wideband support works fine....kinda. i used a dual wideband with eehack myself.

    add a 'user parameter' to the main datalog view, or in the graphing window, search for WIDEBAND. ...
  19. Replies
    1,069
    Views
    685,543

    there are lots of ways to pass information...

    there are lots of ways to pass information between disconnected classes. if you want to create a structure or class as a container of your patch configuration, it's easily passed from the interface...
  20. Replies
    1,069
    Views
    685,543

    bin_file just deals with the bin itself and...

    bin_file just deals with the bin itself and doesn't use the datastream control structure. it should know how to apply a patch, but has no knowledge of when it should be applied. this is object...
  21. Replies
    1,069
    Views
    685,543

    if making a simple http request and comparing the...

    if making a simple http request and comparing the result to an integer is a virus flag then you have really lazy heuristics
  22. Replies
    1,069
    Views
    685,543

    i should clarify that the datastream_control...

    i should clarify that the datastream_control structure is an intermediary control interface between the UI and the datastream, which actually operates in a separate thread. this is definitely a...
  23. Replies
    1,069
    Views
    685,543

    in flash_launcher.cpp you'll see i actually use...

    in flash_launcher.cpp you'll see i actually use variables in the datastream control structure to control flashing behavior. the checkbox toggles a switch in datastream_control.

    then in...
  24. Replies
    1,069
    Views
    685,543

    qt is the most bloated library package ever...

    qt is the most bloated library package ever conceived, it literally does everything. i'm not surprised that the printer library links to something else crazy. i swear i added version checking...
  25. Replies
    1,069
    Views
    685,543

    you could do user configurable custom patches for...

    you could do user configurable custom patches for sure. adding more checkboxes to enable patches wouldn't be too hard.

    you do have to think about something, though.. right now eehack has a patch...
Results 1 to 25 of 100
Page 1 of 4 1 2 3 4