Open keenan-burnett opened 1 year ago
Description This if statement doesn't seem correct: https://github.com/ros-drivers/velodyne/blob/29abd0e1361cb7f5eda451d2b51c35eeca45e0d5/velodyne_pointcloud/src/lib/rawdata.cc#L577
For the last block, we don't want to set the azimuth_diff to zero.
Perhaps the statement needs to be changed to:
azimuth_diff = (block == BLOCKS_PER_PACKET - (4*dual_return)-1) ? last_azimuth_diff : 0;
Description This if statement doesn't seem correct: https://github.com/ros-drivers/velodyne/blob/29abd0e1361cb7f5eda451d2b51c35eeca45e0d5/velodyne_pointcloud/src/lib/rawdata.cc#L577
For the last block, we don't want to set the azimuth_diff to zero.
Perhaps the statement needs to be changed to: