mirror of
https://github.com/orbbec/OrbbecSDK_ROS2.git
synced 2026-09-12 11:10:19 +08:00
feat: add support for Gemini 305 series in camera node and related components
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
|
||||
#include <string>
|
||||
#include <cstdlib>
|
||||
#include <cstdint>
|
||||
|
||||
#define THREAD_NUM 4
|
||||
|
||||
@@ -136,5 +137,11 @@ const int32_t DABAI_MAX_PID = 0x069a; // dabai max
|
||||
const int32_t GEMINI_338_PID = 0x0818; // Gemini 338
|
||||
const uint16_t GEMINI_435Le_PID = 0x815; // Gemini 435Le
|
||||
const uint16_t GEMINI_305_PID = 0x0840; // Gemini 305
|
||||
const uint16_t GEMINI_305_PID2 = 0x0841; // Gemini 305
|
||||
const uint16_t GEMINI_305G_PID = 0x0842; // Gemini 305g
|
||||
|
||||
inline bool isGemini305SeriesPID(uint32_t pid) {
|
||||
return pid == GEMINI_305_PID || pid == GEMINI_305_PID2 || pid == GEMINI_305G_PID;
|
||||
}
|
||||
|
||||
} // namespace orbbec_camera
|
||||
|
||||
Reference in New Issue
Block a user