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

Spelling mistake on LDD Temperature option. #7650

Merged
merged 3 commits into from
Oct 27, 2020
Merged
Show file tree
Hide file tree
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 include/librealsense2/h/rs_option.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ extern "C" {
RS2_OPTION_EMITTER_ON_OFF, /**< When supported, this option make the camera to switch the emitter state every frame. 0 for disabled, 1 for enabled */
RS2_OPTION_ZERO_ORDER_POINT_X, /**< Zero order point x*/
RS2_OPTION_ZERO_ORDER_POINT_Y, /**< Zero order point y*/
RS2_OPTION_LLD_TEMPERATURE, /**< LLD temperature*/
RS2_OPTION_LLD_TEMPERATURE, /**< LDD temperature*/
RS2_OPTION_MC_TEMPERATURE, /**< MC temperature*/
RS2_OPTION_MA_TEMPERATURE, /**< MA temperature*/
RS2_OPTION_HARDWARE_PRESET, /**< Hardware stream configuration */
Expand Down
2 changes: 1 addition & 1 deletion src/types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ namespace librealsense
CASE(EMITTER_ON_OFF)
CASE(ZERO_ORDER_POINT_X)
CASE(ZERO_ORDER_POINT_Y)
CASE(LLD_TEMPERATURE)
case RS2_OPTION_LLD_TEMPERATURE: return "LDD temperature";
CASE(MC_TEMPERATURE)
CASE(MA_TEMPERATURE)
CASE(APD_TEMPERATURE)
Expand Down