persist falling until message sent (#1982)

Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
old-commit-hash: 85a7ceaf07
commatwo_master
HaraldSchafer 5 years ago committed by GitHub
parent fd1078a548
commit e85d1f0044
  1. 3
      selfdrive/locationd/locationd.py

@ -149,6 +149,7 @@ class Localizer():
fix.posenetOK = not (std_spike and self.car_speed > 5) fix.posenetOK = not (std_spike and self.car_speed > 5)
fix.deviceStable = not self.device_fell fix.deviceStable = not self.device_fell
self.device_fell = False
#fix.gpsWeek = self.time.week #fix.gpsWeek = self.time.week
#fix.gpsTimeOfWeek = self.time.tow #fix.gpsTimeOfWeek = self.time.tow
@ -245,7 +246,7 @@ class Localizer():
if sensor_reading.sensor == 1 and sensor_reading.type == 1: if sensor_reading.sensor == 1 and sensor_reading.type == 1:
# check if device fell, estimate 10 for g # check if device fell, estimate 10 for g
# 40m/s**2 is a good filter for falling detection, no false positives in 20k minutes of driving # 40m/s**2 is a good filter for falling detection, no false positives in 20k minutes of driving
self.device_fell = abs(sensor_reading.acceleration.v[0] - 10) > 40 self.device_fell = self.device_fell or (np.linalg.norm(np.array(sensor_reading.acceleration.v) - np.array([10, 0, 0])) > 40)
self.acc_counter += 1 self.acc_counter += 1
if self.acc_counter % SENSOR_DECIMATION == 0: if self.acc_counter % SENSOR_DECIMATION == 0:

Loading…
Cancel
Save