GPS not working
Posted: Tue Sep 13, 2016 4:02 am
Hey Guys,
Hoping someone has dealt with no GPS signal from your RCP2?
I recently sent in my RCP2 to get repaired for a bad USB port... should have put a cable restraint on the USB cable. When I hooked it back up along with my new GoPro wifi module, everything seemed good; bluetooth is working, got my 1 analog ch, RPM, Gforce but no GPS. Believe me, it took me 2 weeks to figure that it was because no GPS that my Racerender file didn't have the autocross course map or speed information. I thought it was operator error somewhere in SoloStorm when it is really operator error/RCP2.
I will say that orignally, the kit was installed at a local shop. I figured that since I was just reconnecting cables that I would be okay to do this myself. I did confirm that GPS antenna cable is firmly reconnected. The GPS LED is putting out 1 slow blink at maybe a sec interval. When I USB tether my laptop and open RCP software it shows O GPS data. I also get the same thing on android phone when I open Solostorm, it shows 0 satellites. I went through the Quickstart at the WIKI and didn't see anyting about Scripting so I'm guessing scripting isn't a priority as far as troubleshooting. But just in case, There was a gear ratio script on the box. Which I replaced with another one that is at the WIKI:
################################################################
--Developed by Luther Lloyd III 8/22/14 for use by Autosport Labs Community
--Copy this text into the scripting window of Race Analyzer
--Edit the gear ratios to mathc your car
--Add another gear row if needed for 6th gear or delete extraneous ones
--below values are constants for the vehicle
local _1stGear = 3.5
local _2ndGear = 2.7
local _3rdGear = 2.0
local _4thGear = 1.4
local _5thGear = 0.9
local FinalDrive = 3.21
--diameter in inches
local TireDia = 25.0
--allowable error of gear ratio to allow for measurement variation
local gearErr = 0.1
local rpmSpeedRatio = 0
--initialized to 0 so if it doesn't work you know
local gearPos = 0 --this is the gear channel variable
function onTick() --updates gear position every second by default
--assumes Pulse Input channel one is for the RPM signal and speed in MPH
local speed = getGpsSpeed()
local rpm = getTimerRpm(0)
--this part only works for firmware version 2.0 per the RCP page
gearId = addChannel("Gear",5)
if speed > 10 then
--makes sure your rolling so as not to divide by 0
rpmSpeedRatio = (rpm/speed)/(FinalDrive*1056/(TireDia*3.14159))
if ((_1stGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 1 end
if ((_2ndGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 2 end
if ((_3rdGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 3 end
if ((_4thGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 4 end
if ((_5thGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 5 end
else gearPos = 0 end
setChannel(gearId, gearPos) --outputs to virtual channel
end
################################################################
I did go through a check list based on the WIKI quickstart and confirmed everything was set and at the correct MHZ. I also made sure to UPDATE everytime I made a change in the RCP software.
When I have time, I will confirm that the antenna module cable did not get cut. After that I'm guessing a firmware update to try to reset the box? I'll try to figure out how to spit out the diagnostic report on my next update.
thanks in advance
Tane
Hoping someone has dealt with no GPS signal from your RCP2?
I recently sent in my RCP2 to get repaired for a bad USB port... should have put a cable restraint on the USB cable. When I hooked it back up along with my new GoPro wifi module, everything seemed good; bluetooth is working, got my 1 analog ch, RPM, Gforce but no GPS. Believe me, it took me 2 weeks to figure that it was because no GPS that my Racerender file didn't have the autocross course map or speed information. I thought it was operator error somewhere in SoloStorm when it is really operator error/RCP2.
I will say that orignally, the kit was installed at a local shop. I figured that since I was just reconnecting cables that I would be okay to do this myself. I did confirm that GPS antenna cable is firmly reconnected. The GPS LED is putting out 1 slow blink at maybe a sec interval. When I USB tether my laptop and open RCP software it shows O GPS data. I also get the same thing on android phone when I open Solostorm, it shows 0 satellites. I went through the Quickstart at the WIKI and didn't see anyting about Scripting so I'm guessing scripting isn't a priority as far as troubleshooting. But just in case, There was a gear ratio script on the box. Which I replaced with another one that is at the WIKI:
################################################################
--Developed by Luther Lloyd III 8/22/14 for use by Autosport Labs Community
--Copy this text into the scripting window of Race Analyzer
--Edit the gear ratios to mathc your car
--Add another gear row if needed for 6th gear or delete extraneous ones
--below values are constants for the vehicle
local _1stGear = 3.5
local _2ndGear = 2.7
local _3rdGear = 2.0
local _4thGear = 1.4
local _5thGear = 0.9
local FinalDrive = 3.21
--diameter in inches
local TireDia = 25.0
--allowable error of gear ratio to allow for measurement variation
local gearErr = 0.1
local rpmSpeedRatio = 0
--initialized to 0 so if it doesn't work you know
local gearPos = 0 --this is the gear channel variable
function onTick() --updates gear position every second by default
--assumes Pulse Input channel one is for the RPM signal and speed in MPH
local speed = getGpsSpeed()
local rpm = getTimerRpm(0)
--this part only works for firmware version 2.0 per the RCP page
gearId = addChannel("Gear",5)
if speed > 10 then
--makes sure your rolling so as not to divide by 0
rpmSpeedRatio = (rpm/speed)/(FinalDrive*1056/(TireDia*3.14159))
if ((_1stGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 1 end
if ((_2ndGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 2 end
if ((_3rdGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 3 end
if ((_4thGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 4 end
if ((_5thGear - rpmSpeedRatio)^2) < (gearErr^2) then gearPos = 5 end
else gearPos = 0 end
setChannel(gearId, gearPos) --outputs to virtual channel
end
################################################################
I did go through a check list based on the WIKI quickstart and confirmed everything was set and at the correct MHZ. I also made sure to UPDATE everytime I made a change in the RCP software.
When I have time, I will confirm that the antenna module cable did not get cut. After that I'm guessing a firmware update to try to reset the box? I'll try to figure out how to spit out the diagnostic report on my next update.
thanks in advance
Tane