Automatic logging, Track ID & setup
Posted: Mon May 01, 2017 4:17 pm
First day at the track yesterday with RCP3, raised some questions.
1. I never got any data logs.
I had the following script in my setup but it did not initiate logging.
function onTick()
processCAN(CAN_chan)
--Start logging above 10mph
if getGpsSpeed() > 10 then
startLogging()
else
stopLogging()
end
end
I didn't want more than one onTick() in the script so I placed the "if statement" below the processCAN instruction.
Should I place it somewhere else? Give it a unique function name & call the function under the onTick?
Lua is new to me not sure how to use it yet.
2. We were at Road America and the automatic track setup did not work. I never got lap times etc while viewing in Podium. Are there setup requirements for that to work? After choosing Road America as the track in Podium it did display vehicle position on the track map but no lap times, no predictive laps, no sector times etc. The data that was displayed had serious lag time 8-12 seconds is that normal?
3. I used the CAN channel mapping feature to add an oil pressure input from a Megasquirt controller but the reading never changed in Podium
Any help resolving these issues would be GREATLY APPRECIATED.
Thanks,
Dave W.
1. I never got any data logs.
I had the following script in my setup but it did not initiate logging.
function onTick()
processCAN(CAN_chan)
--Start logging above 10mph
if getGpsSpeed() > 10 then
startLogging()
else
stopLogging()
end
end
I didn't want more than one onTick() in the script so I placed the "if statement" below the processCAN instruction.
Should I place it somewhere else? Give it a unique function name & call the function under the onTick?
Lua is new to me not sure how to use it yet.
2. We were at Road America and the automatic track setup did not work. I never got lap times etc while viewing in Podium. Are there setup requirements for that to work? After choosing Road America as the track in Podium it did display vehicle position on the track map but no lap times, no predictive laps, no sector times etc. The data that was displayed had serious lag time 8-12 seconds is that normal?
3. I used the CAN channel mapping feature to add an oil pressure input from a Megasquirt controller but the reading never changed in Podium
Any help resolving these issues would be GREATLY APPRECIATED.
Thanks,
Dave W.