forked from Archive/PX4-Autopilot
ll40ls : add missing struct inititalisation
This commit is contained in:
parent
792f1747c7
commit
7136f6e880
|
@ -127,7 +127,7 @@ int LidarLiteI2C::init()
|
|||
_class_instance = register_class_devname(RANGE_FINDER_BASE_DEVICE_PATH);
|
||||
|
||||
/* get a publish handle on the range finder topic */
|
||||
struct distance_sensor_s ds_report;
|
||||
struct distance_sensor_s ds_report = {};
|
||||
measure();
|
||||
_reports->get(&ds_report);
|
||||
_distance_sensor_topic = orb_advertise_multi(ORB_ID(distance_sensor), &ds_report,
|
||||
|
|
Loading…
Reference in New Issue