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

Update emitter frequency minimal fw version to 5.14.0.0 #11223

Merged
merged 1 commit into from
Dec 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ds5/ds5-active.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ namespace librealsense

// EMITTER FREQUENCY OPTION
if( ( _pid == ds::RS457_PID || _pid == ds::RS455_PID )
&& _fw_version >= firmware_version( "5.13.1.53" ) )
&& _fw_version >= firmware_version( "5.14.0" ) )
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't you mean 5.14.0.0 ?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's the same,
The utility version class drops the build number if it's 0.
I tested it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if so ... :-)

{
auto emitter_freq = std::make_shared< emitter_frequency >(
raw_depth_ep,
Expand Down