Problem with ./lidar_sample #167
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
when I'm starting ./lidar_sample, I'ts giving me the values [I modified main.c program]. but after a certain value it's like exiting from the loop. so how can I put it in a infinite loop? or where?
for example:
here I'm printing the data like this
if(data->data_type == kExtendedCartesian){ LivoxExtendedRawPoint *p_pointdata = (LivoxExtendedRawPoint *)data->data; printf("%d, %d, %d", p_point_data->x, p_point_data->y, p_point_data->z); }If you please check the main.c in the Livox-SDK/sample/lidar, I modified that "GetLidarData()" function. but unfortunately after a certain time it's like exiting from the loop! so how can I solve that?
And how to get the data as frame by frame?
Hi @Shibaditya99 ,
How did you solve this problem? Can you provide short example?