Notices

RAX Fast Logging

Thread Tools
 
Search this Thread
 
Old Jan 4, 2013 | 05:19 PM
  #91  
richardjh's Avatar
Thread Starter
Evolved Member
 
Joined: Oct 2010
Posts: 2,447
Likes: 14
From: Australia
Do you mean over 5V? For RAX Fast Logging, MAF-Volts is an 8-bit value. If the source data is 9-bit, it'll lose the top bit.

I didn't think that was possible. If I had, I would have halved the MAF-Volts resolution in order to fit 9-bit source data into the 8-bit space available.

Rich
Reply
Old Jan 4, 2013 | 07:18 PM
  #92  
TravisF's Avatar
Evolving Member
iTrader: (1)
 
Joined: May 2008
Posts: 239
Likes: 0
From: New Mexico
I haven't seen any problems with MAF data.. it's always between 1 - 5 volts in my logs
Reply
Old Jan 5, 2013 | 04:15 PM
  #93  
TravisF's Avatar
Evolving Member
iTrader: (1)
 
Joined: May 2008
Posts: 239
Likes: 0
From: New Mexico
Originally Posted by richardjh
If you want B, C and D to update every cycle, don't put them in any "sampgroup" at all.


I'd suggest:

RAX_A_Dat ... Use sampgroup=1
RAX_D_Dat ... Use sampgroup=2
RAX_E_Dat ... Use sampgroup=2
RAX_F_Dat ... Use sampgroup=1
RAX_G_Dat ... Use sampgroup=1

...and the rest with no sampgroup.

See how that runs. It will mirror my "Priority" setup in EvoScan.

Rich
13 lines per second using that. Just noticed at the very bottom of the logcfg.out it shows how fast it'll be:

5 obd requests per cycle (worst case), taking 75000us per cycle (55000us is fastest possible)
logging interval will be 75000us
Reply
Old Jan 7, 2013 | 05:01 PM
  #94  
kozmic27's Avatar
Evolved Member
 
Joined: Jun 2009
Posts: 653
Likes: 12
From: Houston, TX
Originally Posted by richardjh
No, not sure what you mean by "missing".

Rich
I use a spread sheet that uses a rounding function to take the voltage values logged by evoscan, and converts them to there nearest 2 decimal place value (in a different column) , while preserving the original logged value (in the original data column). All rounded values are displayed, even values that are not adjustable in ECU Flash. My spread sheet keeps track of data sample count per voltage value. I have noticed that when I use fast logging, every other voltage area is giving me a sample count of 0, meaning no data is logged that rounds to those values. This is odd because normally evoscan loggs maf voltage values out many decimal places. It is almost like there is a filter. If fast logging does the rounding function in the ECU, then this would explain it. It isn't really an issue, it just made me wonder if it was intentional or not.
Reply
Old Jan 7, 2013 | 05:36 PM
  #95  
TravisF's Avatar
Evolving Member
iTrader: (1)
 
Joined: May 2008
Posts: 239
Likes: 0
From: New Mexico
Originally Posted by kozmic27
I use a spread sheet that uses a rounding function to take the voltage values logged by evoscan, and converts them to there nearest 2 decimal place value (in a different column) , while preserving the original logged value (in the original data column). All rounded values are displayed, even values that are not adjustable in ECU Flash. My spread sheet keeps track of data sample count per voltage value. I have noticed that when I use fast logging, every other voltage area is giving me a sample count of 0, meaning no data is logged that rounds to those values. This is odd because normally evoscan loggs maf voltage values out many decimal places. It is almost like there is a filter. If fast logging does the rounding function in the ECU, then this would explain it. It isn't really an issue, it just made me wonder if it was intentional or not.
I think I understand what you're saying ... you have a list of possible MAF values out to two decimal places (1.00, 1.01, 1.02, 1.03 ... etc) and next to each possible value is a number of times that value was logged?

You're saying you get hits on 1.00, but not 1.01, and then more hits on 1.02, and none on 1.03?

According to the RAX Patch instructions the resolution on MAF is 0.0196V, so if we try increments of that value and round them we get:

0.0196 = 0.02
0.0392 = 0.04
0.0588 = 0.06
0.0784 = 0.08
0.0980 = 0.10

Hope this helps!
Reply
Old Jan 7, 2013 | 06:03 PM
  #96  
richardjh's Avatar
Thread Starter
Evolved Member
 
Joined: Oct 2010
Posts: 2,447
Likes: 14
From: Australia
MAF Volts in regular logging is a 16-bit value multiplied by 0.004883.

MAF Volts in RAX is an 8-bit value multiplied by 0.01952.


The "regular" MAF Volts value is divided by four before being placed in the RAX "packaged" data.

Rich
Reply
Old Feb 7, 2013 | 04:23 PM
  #97  
ivan308's Avatar
Newbie
iTrader: (1)
 
Joined: May 2009
Posts: 50
Likes: 0
From: florida
Please ignore -
Attached Files

Last edited by ivan308; Feb 7, 2013 at 05:18 PM.
Reply
Old May 23, 2013 | 05:47 PM
  #98  
acidtonic's Avatar
Evolved Member
iTrader: (1)
 
Joined: Jun 2009
Posts: 746
Likes: 1
From: Detroit
Here's my over due program. I saw it the other day and remembered some people may be wanting this. Life has been crazy and my apologies for the wait. I made it open source and hosted it on GitHub. Feel free to use it under the terms of the GPL. I also will review any pull requests or documentation submissions on GitHub. Cheers.

Just install python2.x (whatever the latest windows binary is).
Then put this in a folder on the root of your tactrix. Double click the LogFixer.py file and it should launch in a cmd.exe window and convert any log files it finds.

If you have trouble let me know, but please read the documentation first. Since it's open source, someone else (with more time than I) can build binaries for you guys to use. For now you gotta install python to run it.

https://github.com/acidtonic/LogFixer
Reply
Old May 24, 2013 | 08:42 AM
  #99  
richardjh's Avatar
Thread Starter
Evolved Member
 
Joined: Oct 2010
Posts: 2,447
Likes: 14
From: Australia


Rich
Reply
Old May 24, 2013 | 01:53 PM
  #100  
Drkramm's Avatar
Newbie
 
Joined: Oct 2012
Posts: 64
Likes: 0
From: pa
so does this just add the extra columns ? i can get it to open with evo scan but i cant display any meaningful data


Originally Posted by acidtonic
Here's my over due program. I saw it the other day and remembered some people may be wanting this. Life has been crazy and my apologies for the wait. I made it open source and hosted it on GitHub. Feel free to use it under the terms of the GPL. I also will review any pull requests or documentation submissions on GitHub. Cheers.

Just install python2.x (whatever the latest windows binary is).
Then put this in a folder on the root of your tactrix. Double click the LogFixer.py file and it should launch in a cmd.exe window and convert any log files it finds.

If you have trouble let me know, but please read the documentation first. Since it's open source, someone else (with more time than I) can build binaries for you guys to use. For now you gotta install python to run it.

https://github.com/acidtonic/LogFixer

Last edited by Drkramm; May 24, 2013 at 01:56 PM.
Reply
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
richardjh
ECU Flash
202
Nov 6, 2024 04:41 AM
richardjh
ECU Flash
85
Sep 17, 2023 01:02 AM
Dimmoun
ECU Flash
0
Apr 19, 2016 12:20 AM
wenjie1812
ECU Flash
2
Oct 1, 2015 07:15 PM
richardjh
09+ Ralliart Engine/Turbo/Drivetrain
21
Aug 23, 2012 12:05 AM




All times are GMT -7. The time now is 12:12 AM.