mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
drivers/mpu6000: Populate device ID in sensor topics
This commit is contained in:
parent
cfaef7f433
commit
ddda5eccd6
@ -2030,6 +2030,9 @@ MPU6000::measure()
|
||||
arb.temperature_raw = report.temp;
|
||||
arb.temperature = _last_temperature;
|
||||
|
||||
/* TODO return unique hardware ID */
|
||||
arb.device_id = 0;
|
||||
|
||||
grb.x_raw = report.gyro_x;
|
||||
grb.y_raw = report.gyro_y;
|
||||
grb.z_raw = report.gyro_z;
|
||||
@ -2063,6 +2066,9 @@ MPU6000::measure()
|
||||
grb.temperature_raw = report.temp;
|
||||
grb.temperature = _last_temperature;
|
||||
|
||||
/* TODO return unique hardware ID */
|
||||
grb.device_id = 0;
|
||||
|
||||
_accel_reports->force(&arb);
|
||||
_gyro_reports->force(&grb);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user