@ -5,12 +5,13 @@ import time
import datetime
import datetime
import unittest
import unittest
import subprocess
import subprocess
import numpy as np
import cereal . messaging as messaging
import cereal . messaging as messaging
from system . hardware import TICI
from system . hardware import TICI
from system . sensord . rawgps . rawgpsd import at_cmd
from system . sensord . rawgps . rawgpsd import at_cmd
from selfdrive . manager . process_config import managed_processes
from selfdrive . manager . process_config import managed_processes
from common . transformations . coordinates import ecef_from_geodetic
GOOD_SIGNAL = bool ( int ( os . getenv ( " GOOD_SIGNAL " , ' 0 ' ) ) )
GOOD_SIGNAL = bool ( int ( os . getenv ( " GOOD_SIGNAL " , ' 0 ' ) ) )
UPDATE_MS = 100
UPDATE_MS = 100
@ -106,14 +107,17 @@ class TestRawgpsd(unittest.TestCase):
at_cmd ( " AT+QGPSDEL=0 " )
at_cmd ( " AT+QGPSDEL=0 " )
managed_processes [ ' rawgpsd ' ] . start ( )
managed_processes [ ' rawgpsd ' ] . start ( )
#managed_processes['laikad'].start( )
managed_processes [ ' laikad ' ] . start ( )
assert self . _wait_for_location ( 120 )
assert self . _wait_for_location ( 120 )
assert self . sm_gps_location [ ' gpsLocation ' ] . flags == 1
assert self . sm_gps_location [ ' gpsLocation ' ] . flags == 1
#module_fix = [self.sm['gpsLocation'].latitude, self.sm['gpsLocation'].longitude, self.sm['gpsLocation'].altitude]
module_fix = ecef_from_geodetic ( [ self . sm_gps_location [ ' gpsLocation ' ] . latitude ,
#assert self._wait_for_laikad_location(90)
self . sm_gps_location [ ' gpsLocation ' ] . longitude ,
#assert self.sm['gnssMeasurements'].flags == 1
self . sm_gps_location [ ' gpsLocation ' ] . altitude ] )
#print(self.sm_gnss_measurements['gnssMeasurements'])
assert self . _wait_for_laikad_location ( 90 )
#managed_processes['laikad'].stop()
total_diff = np . array ( self . sm_gnss_measurements [ ' gnssMeasurements ' ] . positionECEF . value ) - module_fix
print ( total_diff )
self . assertLess ( np . linalg . norm ( total_diff ) , 100 )
managed_processes [ ' laikad ' ] . stop ( )
managed_processes [ ' rawgpsd ' ] . stop ( )
managed_processes [ ' rawgpsd ' ] . stop ( )
if __name__ == " __main__ " :
if __name__ == " __main__ " :