Files
StarPilot/selfdrive/locationd/calibration_values.py
T
dekerr 4e8ae9e452 Move calibration values (#441)
* initial commit

* moved constants

old-commit-hash: 53c6ca6589
2018-11-18 17:18:29 -08:00

12 lines
178 B
Python

import math
class Filter:
MIN_SPEED = 7 # m/s (~15.5mph)
MAX_YAW_RATE = math.radians(3) # per second
class Calibration:
UNCALIBRATED = 0
CALIBRATED = 1
INVALID = 2