Notices

Logging with no Laptop - RA logcfg files here

Thread Tools
 
Search this Thread
 
Old May 11, 2011, 01:57 AM
  #16  
Evolved Member
 
richardjh's Avatar
 
Join Date: Oct 2010
Location: Australia
Posts: 2,447
Received 14 Likes on 13 Posts
Originally Posted by nunyas
Bryan (or anyone that knows for that matter),

I decided that I want to start logging my SST temps using this method of logging. The following is what I put in my logcfg.tct file:
Code:
paramname=SSTTemp
paramid=CAN28-0
scalingrpn=x,1.8,*,40,-
sampgroup=1
This doesn't seem quite right. My test log only logged values of "419". I did some reverse calculations and came up with a value of 255. If I were to use the EvoScan calculation (x-50) for this (from the "2009+ Ralliart Evoscan addresses / info" thread), my log entries would be 205.

My test log was only about a minute long at idle w/ 1 throttle blip, but it was long enough to register changes in AIT, MAT, and ECT, but like I said the SST Temp didn't change during this time.

Does that information look correct for the logcfg.txt file? Or is the stand alone logger not capable of logging this particular address?
I don't believe that OP2.0 standalone logging has any ability to log CAN requests.

Pretty sure that "paramid" wants a memory address (for type=mrmacan mode), and "CAN28-0" isn't an address. 255 is probably just the unit's code for "WTF?".

Rich
Old May 11, 2011, 03:54 AM
  #17  
Evolved Member
iTrader: (8)
 
Mad_SB's Avatar
 
Join Date: Apr 2003
Location: Georgia
Posts: 2,138
Likes: 0
Received 0 Likes on 0 Posts
Originally Posted by richardjh
I don't believe that OP2.0 standalone logging has any ability to log CAN requests.

Pretty sure that "paramid" wants a memory address (for type=mrmacan mode), and "CAN28-0" isn't an address. 255 is probably just the unit's code for "WTF?".

Rich
Yup, they will need to add a new method to support the CAN requests.
Old May 13, 2011, 10:50 AM
  #18  
Evolved Member
iTrader: (2)
 
nunyas's Avatar
 
Join Date: Feb 2008
Location: Paris, TN
Posts: 1,904
Likes: 0
Received 0 Likes on 0 Posts
I suspected as much when I got nothing but 255 back, but wasn't sure if it was because i was "doing it wrong". Thanks for the info guys
Old Jun 9, 2011, 03:33 PM
  #19  
Evolving Member
iTrader: (1)
 
TurtleRA's Avatar
 
Join Date: Mar 2011
Location: Victoria, Canada
Posts: 135
Likes: 0
Received 1 Like on 1 Post
I was wondering, how do I change it so I log in KM/h vs mph. Not sure if there is some way to change the scaling for this to work, but thought I would ask since not used to mph.
Old Jun 9, 2011, 05:41 PM
  #20  
Evolved Member
 
richardjh's Avatar
 
Join Date: Oct 2010
Location: Australia
Posts: 2,447
Received 14 Likes on 13 Posts
Originally Posted by TurtleRA
I was wondering, how do I change it so I log in KM/h vs mph. Not sure if there is some way to change the scaling for this to work, but thought I would ask since not used to mph.
Code:
paramname=Speed
paramid=<whatever>
scalingrpn=x,2,*
If I were you, I'd slap it in a "sampgroup" with some other infrequently logged entries, like:

Code:
paramname=Speed
paramid=<whatever>
scalingrpn=x,2,*
sampgroup = 1
...because the speed var we log doesn't change very often. It's a total waste to log it every single cycle. It's really only useful as a memory-jogger reference, ie. when you're looking for a particular moment in the logs from the last drive.



Sorry, that was a lot more information that you wanted to know. The answer was "x,2,*".

Rich
Old Jun 9, 2011, 06:12 PM
  #21  
Evolving Member
iTrader: (1)
 
TurtleRA's Avatar
 
Join Date: Mar 2011
Location: Victoria, Canada
Posts: 135
Likes: 0
Received 1 Like on 1 Post
Already took your advice and made a logcfg similar to yours, that is when I realized I should be able to convert to kmph. Thanks a lot for the answer.
Old Mar 23, 2012, 01:39 PM
  #22  
Evolved Member
iTrader: (7)
 
03chi-town0Z's Avatar
 
Join Date: Jan 2005
Location: Burbs, Chicago, IL
Posts: 3,227
Likes: 0
Received 6 Likes on 5 Posts
Is anyone else having issues downloading the logcfg file for the 09 USDM? Or am I just that computer illiterate?
Old Mar 25, 2012, 03:19 PM
  #23  
Evolved Member
iTrader: (7)
 
03chi-town0Z's Avatar
 
Join Date: Jan 2005
Location: Burbs, Chicago, IL
Posts: 3,227
Likes: 0
Received 6 Likes on 5 Posts
Got it, disregard.
Old Apr 3, 2012, 07:36 AM
  #24  
Evolving Member
iTrader: (3)
 
crak's Avatar
 
Join Date: Jan 2012
Location: Winnipeg, Manitoba
Posts: 425
Likes: 0
Received 2 Likes on 1 Post
i must be a goof ball too,

so above in order to change mph to km/h

for a 2009 we change:

paramname=Speed
paramid=0x8087EF
scalingrpn=x,1.26,*
sampgroup=2

to

paramname=Speed
paramid=0x8087EF
scalingrpn=x,2,*
sampgroup=1

to get km/h?

you talk about change the sampgroup and the scalingrpn is this correct?
Old Apr 3, 2012, 07:46 AM
  #25  
Evolved Member
 
richardjh's Avatar
 
Join Date: Oct 2010
Location: Australia
Posts: 2,447
Received 14 Likes on 13 Posts
"sampgroup" is unrelated. That is just a way to organise groups of logging items that are treated in "round-robin" fashion.

Like... if you configure four logging items, and put the first three into "sampgroup 1"...

Logging_Thing_A sampgroup=1
Logging_Thing_B sampgroup=1
Logging_Thing_C sampgroup=1
Logging_Thing_D

...the OP2.0 will log like this:

Logging_Thing_A
Logging_Thing_D

Logging_Thing_B
Logging_Thing_D

Logging_Thing_C
Logging_Thing_D

Logging_Thing_A
Logging_Thing_D

Logging_Thing_B
Logging_Thing_D

Logging_Thing_C
Logging_Thing_D

...

etc.

Rich
Old Apr 3, 2012, 12:10 PM
  #26  
Evolving Member
iTrader: (3)
 
crak's Avatar
 
Join Date: Jan 2012
Location: Winnipeg, Manitoba
Posts: 425
Likes: 0
Received 2 Likes on 1 Post
ahhh makes sense. also if you put 2 in its not the exact to km/h, if the math is done right and you want the exact km/h its 2.0478, but like you said speed at this point doesn't matter as its just for reference.
Old Oct 30, 2012, 10:42 PM
  #27  
Newbie
 
dukeds's Avatar
 
Join Date: Mar 2008
Location: Vancouver
Posts: 90
Likes: 0
Received 0 Likes on 0 Posts
can someone help me verify the address for cruise light on-off ? the logcfg file i downloaded off first page has a comment saying this address is "incorrect". I want to use this feature to start-stop the logging. (2009 USDM/CADM)
Old Feb 6, 2013, 06:08 AM
  #28  
Newbie
 
Onyx1607's Avatar
 
Join Date: Feb 2012
Location: Sydney AU
Posts: 47
Likes: 0
Received 0 Likes on 0 Posts
2009 AUS/EDM.

Engine Coolant Temp seems to have a wrong address, or something else is not right. The linked logcfg.txt file in 1st post, when I uncomment the section:

;paramname=ECT
;paramid=0x808647
;scalingrpn=x,1.8,*,40,-

Seems to only give me a reading 258.8. That can't be the temp 0.4 seconds after cold start all the way through varying ambient conditions to shutdown...
Old Feb 6, 2013, 06:49 AM
  #29  
Evolved Member
 
richardjh's Avatar
 
Join Date: Oct 2010
Location: Australia
Posts: 2,447
Received 14 Likes on 13 Posts
Hmm, yeah, 0x808647 is the ECT address for ROM ID 53610013. You're most likely on ROM ID 53610009/53610010... which uses 0x80863f.

Rich
Old Feb 6, 2013, 05:21 PM
  #30  
Newbie
 
Onyx1607's Avatar
 
Join Date: Feb 2012
Location: Sydney AU
Posts: 47
Likes: 0
Received 0 Likes on 0 Posts
Thank you Rich.

Are there any other worthwhile/newly discovered parameters worthy of monitoring?

I'm mainly keeping an eye on knocksum, timing advance and fuel trims as I'm looking for the academic challenge of tuning for low octane E10.


Quick Reply: Logging with no Laptop - RA logcfg files here



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