Notices

Logging with no Laptop - RA logcfg files here

Thread Tools
 
Search this Thread
 
Old May 11, 2011 | 01:57 AM
  #16  
richardjh's Avatar
Evolved Member
 
Joined: Oct 2010
Posts: 2,447
Likes: 14
From: Australia
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
Reply
Old May 11, 2011 | 03:54 AM
  #17  
Mad_SB's Avatar
Evolved Member
iTrader: (8)
 
Joined: Apr 2003
Posts: 2,138
Likes: 0
From: Georgia
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.
Reply
Old May 13, 2011 | 10:50 AM
  #18  
nunyas's Avatar
Evolved Member
iTrader: (2)
 
Joined: Feb 2008
Posts: 1,905
Likes: 1
From: Paris, TN
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
Reply
Old Jun 9, 2011 | 03:33 PM
  #19  
TurtleRA's Avatar
Evolving Member
iTrader: (1)
 
Joined: Mar 2011
Posts: 135
Likes: 1
From: Victoria, Canada
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.
Reply
Old Jun 9, 2011 | 05:41 PM
  #20  
richardjh's Avatar
Evolved Member
 
Joined: Oct 2010
Posts: 2,447
Likes: 14
From: Australia
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
Reply
Old Jun 9, 2011 | 06:12 PM
  #21  
TurtleRA's Avatar
Evolving Member
iTrader: (1)
 
Joined: Mar 2011
Posts: 135
Likes: 1
From: Victoria, Canada
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.
Reply
Old Mar 23, 2012 | 01:39 PM
  #22  
03chi-town0Z's Avatar
Evolved Member
iTrader: (7)
 
Joined: Jan 2005
Posts: 3,227
Likes: 6
From: Burbs, Chicago, IL
Is anyone else having issues downloading the logcfg file for the 09 USDM? Or am I just that computer illiterate?
Reply
Old Mar 25, 2012 | 03:19 PM
  #23  
03chi-town0Z's Avatar
Evolved Member
iTrader: (7)
 
Joined: Jan 2005
Posts: 3,227
Likes: 6
From: Burbs, Chicago, IL
Got it, disregard.
Reply
Old Apr 3, 2012 | 07:36 AM
  #24  
crak's Avatar
Evolving Member
iTrader: (3)
 
Joined: Jan 2012
Posts: 425
Likes: 2
From: Winnipeg, Manitoba
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?
Reply
Old Apr 3, 2012 | 07:46 AM
  #25  
richardjh's Avatar
Evolved Member
 
Joined: Oct 2010
Posts: 2,447
Likes: 14
From: Australia
"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
Reply
Old Apr 3, 2012 | 12:10 PM
  #26  
crak's Avatar
Evolving Member
iTrader: (3)
 
Joined: Jan 2012
Posts: 425
Likes: 2
From: Winnipeg, Manitoba
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.
Reply
Old Oct 30, 2012 | 10:42 PM
  #27  
dukeds's Avatar
Newbie
 
Joined: Mar 2008
Posts: 90
Likes: 0
From: Vancouver
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)
Reply
Old Feb 6, 2013 | 06:08 AM
  #28  
Onyx1607's Avatar
Newbie
 
Joined: Feb 2012
Posts: 47
Likes: 0
From: Sydney AU
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...
Reply
Old Feb 6, 2013 | 06:49 AM
  #29  
richardjh's Avatar
Evolved Member
 
Joined: Oct 2010
Posts: 2,447
Likes: 14
From: Australia
Hmm, yeah, 0x808647 is the ECT address for ROM ID 53610013. You're most likely on ROM ID 53610009/53610010... which uses 0x80863f.

Rich
Reply
Old Feb 6, 2013 | 05:21 PM
  #30  
Onyx1607's Avatar
Newbie
 
Joined: Feb 2012
Posts: 47
Likes: 0
From: Sydney AU
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.
Reply



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