We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec9329 commit d0fb879Copy full SHA for d0fb879
common/fw-update-helper.cpp
@@ -77,6 +77,16 @@ namespace rs2
77
image = std::vector< uint8_t >( hex, hex + size );
78
}
79
80
+ case RS2_PRODUCT_LINE_D500:
81
+ {
82
+ bool allow_rc_firmware = config_file::instance().get_or_default(configurations::update::allow_rc_firmware, false);
83
+ if (strlen(FW_D555_FW_IMAGE_VERSION) && !allow_rc_firmware)
84
85
+ int size = 0;
86
+ auto hex = fw_get_D555_FW_Image(size);
87
+ image = std::vector< uint8_t >(hex, hex + size);
88
+ }
89
90
break;
91
default:
92
0 commit comments