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

D400 DFU: version 107 added, version 106 corrected #8304

Merged
merged 1 commit into from
Feb 4, 2021
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
6 changes: 3 additions & 3 deletions src/ds5/ds5-private.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,9 @@ namespace librealsense
case 102: return { 3, { 9, 10, 16, 40, 29, 18, 19, 30, 20, 21, 54 } };
case 103: return { 4, { 9, 10, 16, 40, 29, 18, 19, 30, 20, 21, 54 } };
case 104: return { 4, { 9, 10, 40, 29, 18, 19, 30, 20, 21, 54 } };
case 105: // fall through
case 106:
return { 5, { 9, 10, 40, 29, 18, 19, 30, 20, 21, 54 } };
case 105: return { 5, { 9, 10, 40, 29, 18, 19, 30, 20, 21, 54 } };
case 106: return { 5, { 15, 9, 10, 16, 40, 29, 18, 19, 30, 20, 21, 54 } };
case 107: return { 6, { 15, 9, 10, 16, 40, 29, 18, 19, 30, 20, 21, 54 } };
default:
throw std::runtime_error("Unsupported flash version: " + std::to_string(flash_version));
}
Expand Down