Page 1 of 2 12 LastLast
Results 1 to 10 of 16

Thread: Known issues with Nov 07 2013 release of the EFILive software and firmware.

  1. #1
    EFILive Developer Site Admin Blacky's Avatar
    Join Date
    Mar 2003
    Posts
    9,500

    Default Known issues with Nov 07 2013 release of the EFILive software and firmware.

    Currently known issues and possible workarounds for the November 07, 2013 release of the EFILive V7.5, V8 software and the V2.07.52 FlashScan and AutoCal firmware.


    Issue 1:
    The "Created By" and "Modified By" fields in the V8 [F2: Tune]->[F4: Properties]->[File/Author Information] page are "read-only" which means data cannot be entered into them.
    Also the "Modified" date field is not being loaded correctly from the file and always shows as Jan 01, 2000. The date is updated and stored correctly in the file, and once the fault is fixed the date will display correctly in all existing files.
    Workaround:
    You can populate those fields using the name entered into the Properties->General->User Info settings. Whenever you modify and save the file the "Modified By" field is updated with that name, whenever you read a controller and save the file for the first time, the "Created By" field is updated with that name.

    Issue 2:
    The V8 software does not recognize corrupt serial numbers from LB7 (E54) or LLY (E60) controllers in the same way that the V7 software does. That means EFILive V8 may prevent flashing of controllers with corrupt serial numbers (because it thinks they are not licensed correctly) even though the corrupt serial number is licensed to the FlashScan or AutoCal device.
    Workaround:
    Use the V7 software to flash controllers with corrupt serial numbers.

    Issue 3:
    The V8 software fails with an access violation when attempting to change the VIN embedded in a *.ctz file.
    Workaround:
    None. Will be fixed in the next update.

    Issue 4:
    Clicking in the chart area in the V8 Scan Tool software does not give focus to the charts if the "Ctrl+F2 mouse disable" option is active.
    Workaround:
    Press "Ctrl+F2" again to re-enable the mouse prior to clicking in the chart area.
    Issue 5:
    Paste and Multiply option in the V7 Tuning Tool software incorrectly modifies target cells for which the matching source cells are empty when the weighting value is other than 100%. The target cells should always be left untouched when the source cells are empty.
    Workaround:
    None. Will be fixed in next update.
    Issue 6:
    Error number $0525 is being incorrectly reported as error number $0528. Any time the software or firmware reports error $0528, it actually means error $0525
    Error numbers and their descriptions may be looked up in the document: Start->All Programs->EFILive->V8->Documents->EFILive Error Codes.
    Workaround:
    None. Will be fixed in next update.
    Issue 7:
    The V8 software fails with an access violation when deleting the last "BBL Enabled Controller" entry.
    Workaround:
    Always leave at least one entry in the "BBL Enabled Controllers" list. Will be fixed in the next update.


    Please only use this thread to discuss existing issues that are posted above. This thread is not for posting or discussing new problems with this release of the EFILive software. If you have a problem that is not listed here, please create a support ticket as described here: http://support.efilive.com/kb_articl...7778-QEKN-0400

    Regards
    Paul
    Last edited by Blacky; June 29th, 2014 at 09:13 AM.
    Before asking for help, please read this.

  2. #2
    EFILive Developer Site Admin Blacky's Avatar
    Join Date
    Mar 2003
    Posts
    9,500

    Default

    Known issues (1 thru 4) have been fixed in this update:
    http://forum.efilive.com/showthread....084#post200084

    Regards
    Paul
    Before asking for help, please read this.

  3. #3
    Lifetime Member 5.7ute's Avatar
    Join Date
    Oct 2006
    Posts
    1,840

    Default

    I have had a look through the forum & could not find this issue listed, but I do apologise if this has been noted before.
    When paste & multiplying by custom% with labels in the boost VE table, empty cells are reduced by the custom %. So if the custom percent is set to 90%, all the blank cells are reduced by a factor of 0.90. Being my first boosted tune, this caught me out last weekend, but luckily I had allowed enough enrichment to prevent any damage.
    The Tremor at AIR

  4. #4
    EFILive Developer Site Admin Blacky's Avatar
    Join Date
    Mar 2003
    Posts
    9,500

    Default

    Investigating...
    Regards
    Paul
    Before asking for help, please read this.

  5. #5
    EFILive Developer Site Admin Blacky's Avatar
    Join Date
    Mar 2003
    Posts
    9,500

    Default

    The Paste and multiply option will treat empty cells in the data being pasted as if they contained the value "1.0". While that works ok when you are "pasting and multiplying" with a weight of 100% it does not work for weighting values other than 100%.

    For example if the existing cell value is "32.0" and an empty cells is "pasted and multiplied" over the top the following values will be computed and placed in that cell, overwriting the original "32.0":

    If the cell being pasted contains 1.0 and the weight is 100% then: cell = cell*1.0*weight/100 = 32.0*1.0*100/100 = 32.0 - so no change in the cell value as would be expected when multiplying a cell with the value 1.0.
    If the cell being pasted is empty it defaults to 1.0 and the example above is computed - so again, no change in the cell value as would be expected when pasting an empty cell.
    If the cell being pasted is empty it defaults to 1.0, but now assume the weight is 50%: cell = cell*1.0*weight/100 = 32.0*1.0*50/100 = 16.0 - which is not what would be expected.

    I will change the paste and multiply options to skip empty cells.

    Regards
    Paul
    Before asking for help, please read this.

  6. #6
    Lifetime Member 5.7ute's Avatar
    Join Date
    Oct 2006
    Posts
    1,840

    Default

    Quote Originally Posted by Blacky View Post
    The Paste and multiply option will treat empty cells in the data being pasted as if they contained the value "1.0". While that works ok when you are "pasting and multiplying" with a weight of 100% it does not work for weighting values other than 100%.

    For example if the existing cell value is "32.0" and an empty cells is "pasted and multiplied" over the top the following values will be computed and placed in that cell, overwriting the original "32.0":

    If the cell being pasted contains 1.0 and the weight is 100% then: cell = cell*1.0*weight/100 = 32.0*1.0*100/100 = 32.0 - so no change in the cell value as would be expected when multiplying a cell with the value 1.0.
    If the cell being pasted is empty it defaults to 1.0 and the example above is computed - so again, no change in the cell value as would be expected when pasting an empty cell.
    If the cell being pasted is empty it defaults to 1.0, but now assume the weight is 50%: cell = cell*1.0*weight/100 = 32.0*1.0*50/100 = 16.0 - which is not what would be expected.

    I will change the paste and multiply options to skip empty cells.

    Regards
    Paul
    Yeah, I figured that was what was going on. I don't recall it doing that in the normal VE table though, only the boost VE table.
    The Tremor at AIR

  7. #7
    Lifetime Member
    Join Date
    May 2008
    Posts
    345

    Default

    I can't lock CSP or DSP5 tunes but if I open a single setting tune it shows the operating system patch to apply?
    2015 3500HD crew cab long bed, 6" fabtech, slightly tuned, emissions intact.
    2005 dmax ccsb, EFI live tuned DSP 5 Full built motor, S471 billet single, More better built trans this time. and lots of other things.
    1984 CJ7 powered by a 2000 LS1. 4L60E.
    2012 Jetta TDI 6 speed manual, (yes the dirty the bastard haha)
    2003 Jetta TDI,
    1986 K10 LQ4/4L80E

  8. #8
    Lifetime Member GMPX's Avatar
    Join Date
    Apr 2003
    Posts
    13,148

    Default

    CSP5 & DSP5 tunes are automatically locked as part of the upgrade process, from the CSP5 upgrade manual.....

    Please Note: CSP5 tunes cannot be read out of the ECM once flashed in.

    Cheers,
    Ross
    I no longer monitor the forum, please either post your question or create a support ticket.

  9. #9
    Lifetime Member
    Join Date
    May 2008
    Posts
    345

    Default

    Quote Originally Posted by GMPX View Post
    CSP5 & DSP5 tunes are automatically locked as part of the upgrade process, from the CSP5 upgrade manual.....

    Please Note: CSP5 tunes cannot be read out of the ECM once flashed in.

    Cheers,
    Ross
    Oh no kidding didn't know that. Thanks
    2015 3500HD crew cab long bed, 6" fabtech, slightly tuned, emissions intact.
    2005 dmax ccsb, EFI live tuned DSP 5 Full built motor, S471 billet single, More better built trans this time. and lots of other things.
    1984 CJ7 powered by a 2000 LS1. 4L60E.
    2012 Jetta TDI 6 speed manual, (yes the dirty the bastard haha)
    2003 Jetta TDI,
    1986 K10 LQ4/4L80E

  10. #10
    Lifetime Member
    Join Date
    May 2008
    Posts
    345

    Default

    So one other question if Iam emailing someone a tune to flash in with their own efi v2 is there a way to keep them from seeing the tune? Do I use the "save for remote flashing" function or is that only for Autocals?
    2015 3500HD crew cab long bed, 6" fabtech, slightly tuned, emissions intact.
    2005 dmax ccsb, EFI live tuned DSP 5 Full built motor, S471 billet single, More better built trans this time. and lots of other things.
    1984 CJ7 powered by a 2000 LS1. 4L60E.
    2012 Jetta TDI 6 speed manual, (yes the dirty the bastard haha)
    2003 Jetta TDI,
    1986 K10 LQ4/4L80E

Page 1 of 2 12 LastLast

Similar Threads

  1. Software issues with build 99 pre release...
    By LBZoom in forum Duramax 06 LLY / 06+ LBZ & LMM
    Replies: 2
    Last Post: January 18th, 2010, 04:25 AM
  2. Replies: 22
    Last Post: January 8th, 2007, 02:15 PM
  3. EFILive 7.3 pre-release software has been updated - again
    By Blacky in forum General (Petrol, Gas, Ethanol)
    Replies: 23
    Last Post: August 24th, 2005, 09:44 AM
  4. EFILive 7.3 pre-release software is now available
    By Blacky in forum General (Petrol, Gas, Ethanol)
    Replies: 60
    Last Post: August 18th, 2005, 11:51 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •