#include <glad/glad.h>#include <map>#include <vector>#include <string>#include <thread>#include <condition_variable>#include "fw-update-helper.h"#include "model-views.h"#include "viewer.h"#include "os.h"
Go to the source code of this file.
Namespaces | |
| rs2 | |
Macros | |
| #define | FW_D4XX_FW_IMAGE_VERSION "" |
| #define | FW_L5XX_FW_IMAGE_VERSION "" |
| #define | FW_SR3XX_FW_IMAGE_VERSION "" |
Enumerations | |
| enum | rs2::firmware_update_ui_state { rs2::RS2_FWU_STATE_INITIAL_PROMPT = 0, rs2::RS2_FWU_STATE_IN_PROGRESS = 1, rs2::RS2_FWU_STATE_COMPLETE = 2, rs2::RS2_FWU_STATE_FAILED = 3 } |
Functions | |
| std::map< int, std::vector< uint8_t > > | rs2::create_default_fw_table () |
| const char * | fw_get_D4XX_FW_Image (int) |
| const char * | fw_get_L5XX_FW_Image (int) |
| const char * | fw_get_SR3XX_FW_Image (int) |
| std::string | rs2::get_available_firmware_version (int product_line) |
| bool | rs2::is_recommended_fw_available (std::string id) |
| bool | rs2::is_upgradeable (const std::string &curr, const std::string &available) |
| std::vector< int > | rs2::parse_fw_version (const std::string &fw) |
| int | rs2::parse_product_line (std::string id) |
Variables | |
| constexpr const char * | recommended_fw_url = "https://dev.intelrealsense.com/docs/firmware-updates" |
| #define FW_D4XX_FW_IMAGE_VERSION "" |
Definition at line 23 of file fw-update-helper.cpp.
| #define FW_L5XX_FW_IMAGE_VERSION "" |
Definition at line 25 of file fw-update-helper.cpp.
| #define FW_SR3XX_FW_IMAGE_VERSION "" |
Definition at line 24 of file fw-update-helper.cpp.
| const char* fw_get_D4XX_FW_Image | ( | int | ) |
Definition at line 26 of file fw-update-helper.cpp.
| const char* fw_get_L5XX_FW_Image | ( | int | ) |
Definition at line 28 of file fw-update-helper.cpp.
| const char* fw_get_SR3XX_FW_Image | ( | int | ) |
Definition at line 27 of file fw-update-helper.cpp.
| constexpr const char* recommended_fw_url = "https://dev.intelrealsense.com/docs/firmware-updates" |
Definition at line 32 of file fw-update-helper.cpp.