Skip to content
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
12 changes: 6 additions & 6 deletions src/ds/d500/d500-auto-calibration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -468,13 +468,13 @@ namespace librealsense

void d500_auto_calibrated::reset_to_factory_calibration() const
{
throw not_implemented_exception(rsutils::string::from() << "Reset to factory Calibration not applicable for this device");
auto cmd = _debug_dev->build_command(ds::CAL_RESTORE_DFLT);
auto res = _debug_dev->send_receive_raw_data(cmd);

// Uncomment if function implemented
//for( auto & cb : _depth_write_callbacks )
// cb();
//for( auto & cb : _color_write_callbacks )
// cb();
for( auto & cb : _depth_write_callbacks )
cb();
for( auto & cb : _color_write_callbacks )
cb();
}

std::vector< uint8_t > d500_auto_calibrated::run_focal_length_calibration( rs2_frame_queue * left,
Expand Down
Loading