f8e13417f2
date: 2026-08-15T14:20:10 master commit: d48cfa730bf21593b684efeaf3fd8940695e1dea
15 lines
505 B
Python
15 lines
505 B
Python
from openpilot.cereal import messaging
|
|
|
|
|
|
def generate_deviceMotion():
|
|
msg = messaging.new_message('deviceMotion')
|
|
meas = {'x': 0.0, 'y': 0.0, 'z': 0.0, 'xStd': 0.0, 'yStd': 0.0, 'zStd': 0.0, 'valid': True}
|
|
msg.deviceMotion.orientationNED = meas
|
|
msg.deviceMotion.velocityDevice = meas
|
|
msg.deviceMotion.angularVelocityDevice = meas
|
|
msg.deviceMotion.accelerationDevice = meas
|
|
msg.deviceMotion.inputsOK = True
|
|
msg.deviceMotion.posenetOK = True
|
|
msg.deviceMotion.sensorsOK = True
|
|
return msg
|