Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

May I ask for help about how to understand different intensity mode? #40

Open
FishInWave opened this issue May 14, 2020 · 2 comments
Open

Comments

@FishInWave
Copy link

I have read the code below in raw_data.cc:
if ((data[291] == 0x00) || (data[291] == 0xff) || (data[291] == 0xa1)) { intensity_mode_ = 1; // mode for the top firmware lower than T6R23V8(16) or T9R23V6(32) } else if (data[291] == 0xb1) { intensity_mode_ = 2; // mode for the top firmware higher than T6R23V8(16) or T9R23V6(32) } else if (data[291] == 0xc1) { intensity_mode_ = 3; // mode for the top firmware higher than T6R23V9 }
Do T6R23V8(16) and T9R23V6(32) represent the version of firmware?
If so, I have no idea aout what version of my RS-LiDAR 16. The manufacture date of my Lidar is 21/9/2019.
Hoping your reply, Thanks.

@HaoQChen
Copy link
Contributor

HaoQChen commented Aug 3, 2020

I have read the code below in raw_data.cc:
if ((data[291] == 0x00) || (data[291] == 0xff) || (data[291] == 0xa1)) { intensity_mode_ = 1; // mode for the top firmware lower than T6R23V8(16) or T9R23V6(32) } else if (data[291] == 0xb1) { intensity_mode_ = 2; // mode for the top firmware higher than T6R23V8(16) or T9R23V6(32) } else if (data[291] == 0xc1) { intensity_mode_ = 3; // mode for the top firmware higher than T6R23V9 }
Do T6R23V8(16) and T9R23V6(32) represent the version of firmware?
If so, I have no idea aout what version of my RS-LiDAR 16. The manufacture date of my Lidar is 21/9/2019.
Hoping your reply, Thanks.

Yes, it is the version of firmware. data is DIFOP DATA, lidar will send it to driver. It just tells us which intensity mode to use and how to get it. It base on its firmware

@Oyssster
Copy link

Yes, it is the version of firmware. data is DIFOP DATA, lidar will send it to driver. It just tells us which intensity mode to use and how to get it. It base on its firmware
Dose it mean the intensity_mode_ can't be set by the users?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants