luxonis / depthai-ros

Official ROS Driver for DepthAI Sensors.
MIT License
250 stars 183 forks source link

[BUG] Failed to find device after booting, error message: X_LINK_DEVICE_NOT_FOUND #560

Open trocolit2 opened 1 month ago

trocolit2 commented 1 month ago

Dear all,

I am facing an issue with running the ROS2 driver for the Humble version. The driver software was installed via ROS2 Humble repository, which has the deptai_ros_driver version 2.26. The is the OAK-D-LR, with Bootloader version 0.028. The OS is the Ubuntu 22.04.

After I ran the launch from the deptai_ros_driver, I got the following result:

$ ros2 launch depthai_ros_driver camera.launch.py 
[INFO] [launch]: All log files can be found below /home/ros2/.ros/log/2024-07-14-16-12-04-268345-thinkpad-70120
[INFO] [launch]: Default logging verbosity is set to INFO
[INFO] [component_container-1]: process started with pid [70134]
[component_container-1] [INFO] [1720959124.896794941] [oak_container]: Load Library: /opt/ros/humble/lib/librobot_state_publisher_node.so
[component_container-1] [INFO] [1720959124.902123062] [oak_container]: Found class: rclcpp_components::NodeFactoryTemplate<robot_state_publisher::RobotStatePublisher>
[component_container-1] [INFO] [1720959124.902184528] [oak_container]: Instantiate class: rclcpp_components::NodeFactoryTemplate<robot_state_publisher::RobotStatePublisher>
[component_container-1] [INFO] [1720959124.909118012] [oak_state_publisher]: got segment oak
[component_container-1] [INFO] [1720959124.909140517] [oak_state_publisher]: got segment oak-d-base-frame
[component_container-1] [INFO] [1720959124.909147900] [oak_state_publisher]: got segment oak_imu_frame
[component_container-1] [INFO] [1720959124.909153298] [oak_state_publisher]: got segment oak_left_camera_frame
[component_container-1] [INFO] [1720959124.909158666] [oak_state_publisher]: got segment oak_left_camera_optical_frame
[component_container-1] [INFO] [1720959124.909163688] [oak_state_publisher]: got segment oak_model_origin
[component_container-1] [INFO] [1720959124.909168640] [oak_state_publisher]: got segment oak_rgb_camera_frame
[component_container-1] [INFO] [1720959124.909173957] [oak_state_publisher]: got segment oak_rgb_camera_optical_frame
[component_container-1] [INFO] [1720959124.909179045] [oak_state_publisher]: got segment oak_right_camera_frame
[component_container-1] [INFO] [1720959124.909184054] [oak_state_publisher]: got segment oak_right_camera_optical_frame
[component_container-1] [INFO] [1720959124.910413550] [oak_container]: Load Library: /opt/ros/humble/lib/libdepthai_ros_driver.so
[INFO] [launch_ros.actions.load_composable_nodes]: Loaded node '/oak_state_publisher' in container 'oak_container'
[component_container-1] [INFO] [1720959124.947646296] [oak_container]: Found class: rclcpp_components::NodeFactoryTemplate<depthai_ros_driver::Camera>
[component_container-1] [INFO] [1720959124.947682938] [oak_container]: Instantiate class: rclcpp_components::NodeFactoryTemplate<depthai_ros_driver::Camera>
[component_container-1] [INFO] [1720959124.955290283] [oak]: No ip/mxid specified, connecting to the next available device.
[component_container-1] [ERROR] [1720959132.608889113] [oak]: Failed to find device after booting, error message: X_LINK_DEVICE_NOT_FOUND
[component_container-1] [INFO] [1720959132.609003490] [oak]: No ip/mxid specified, connecting to the next available device.
[component_container-1] [2024-07-14 16:12:15.691] [depthai] [warning] Skipping X_LINK_BOOTLOADER device with name "1.7" ()
[component_container-1] [ERROR] [1720959136.707464666] [oak]: No available devices
[component_container-1] [INFO] [1720959136.707616192] [oak]: No ip/mxid specified, connecting to the next available device.
[component_container-1] [ERROR] [1720959140.775311768] [oak]: No available devices
[component_container-1] [INFO] [1720959140.775454914] [oak]: No ip/mxid specified, connecting to the next available device.
[WARNING] [launch]: user interrupted with ctrl-c (SIGINT)

I suspected the udev rules were not correct, however, I cloned the repository from the depthai-python, and tested the utility python scripts _devicemanager.py and the _camtest.py. From these scripts, I could access the camera information and acquire data. It proves the udev is correct.

image

image

Terminal Output from the _camtest.py

./cam_test.py 
DepthAI version: 2.27.0.0
DepthAI path: /home/ros2/.local/lib/python3.10/site-packages/depthai.cpython-310-x86_64-linux-gnu.so
Enabled cameras:
   cama : color
   camb : color
   camc : color
CAM:  cama
CAM:  camb
CAM:  camc
[19443010616C742700] [1.7] [1.096] [ColorCamera(7)] [warning] Unsupported resolution set for detected camera AR0234, needs 1200_P, defaulting to it
[19443010616C742700] [1.7] [1.097] [ColorCamera(5)] [warning] Unsupported resolution set for detected camera AR0234, needs 1200_P, defaulting to it
[19443010616C742700] [1.7] [1.097] [ColorCamera(3)] [warning] Unsupported resolution set for detected camera AR0234, needs 1200_P, defaulting to it
Connected cameras:
 -socket CAM_A : AR0234 1920 x 1200 focus:fixed - COLOR
 -socket CAM_B : AR0234 1920 x 1200 focus:fixed - COLOR
 -socket CAM_C : AR0234 1920 x 1200 focus:fixed - COLOR
USB speed: SUPER
IR drivers: []
Cam:      cama          camb          camc     [host | capture timestamp]
FPS:  18.42| 18.00  18.17| 18.00  18.67| 18.37

I dug the source code the line where the error rises, and I found this line

I played with the bootupTimeout (WAIT_FOR_BOOTUP_TIMEOUT) values, but increasing or decreasing the time did not affect the error.

I also monitored the lsusb to see the device boot and when the device is not running, the values are: Bus 001 Device 043: ID 03e7:f63c Intel Luxonis Bootloader When I run the ROS driver, the devices change name to Bus 002 Device 019: ID 03e7:f63b Intel Myriad VPU [Movidius Neural Compute Stick] and stay for a few seconds, until come back to the initial USB name.

Could you help me? Please!

In case you more information, please do not hesitate to ask.

Serafadam commented 1 month ago

Hi, could you please post more logs following the bug template? You can skip running stereo_inertial_node as this one won't support OAK-D-LR

trocolit2 commented 1 month ago

Bug Description:

The camera OAK-D-LR presenting the issue during initialization with the camera launch from the _depthai_rosdriver. The driver start the device, but after the bootloader initialization, the driver can not find the device. The error:[oak]: Failed to find device after booting, error message: X_LINK_DEVICE_NOT_FOUND After the booting error, the driver skips the camera connection:[warning] Skipping X_LINK_BOOTLOADER device with name "1.7" (). The camera is ignored by the driver, which can not connect the device anymore.

Minimal Reproducible Example To reproduce the error, please following the steps:

  1. Install the ROS2 Humble framework
  2. Install the depthai_ros_driver and its dependencies ros-humble-depthai 2.26.1-1jammy.20240612.131023 ros-humble-depthai-bridge 2.9.0-1jammy.20240612.132958 ros-humble-depthai-descriptions 2.9.0-1jammy.20240530.095931 ros-humble-depthai-examples 2.9.0-1jammy.20240612.134331 ros-humble-depthai-ros-driver 2.9.0-1jammy.20240627.145557 ros-humble-depthai-ros-msgs 2.9.0-1jammy.20240523.230218
  3. Connect the camera OAK-D-LR, bootloader version 0.028, via USB 3.
    $lusb
    Bus 001 Device 024: ID 03e7:f63c Intel Luxonis Bootloader
  4. Set the ROS2 Humble source. . install/setup.bash
  5. Run the depthai_ros_driver camera launch: ros2 launch depthai_ros_driver camera.launch.py, the output
    $ ros2 launch depthai_ros_driver camera.launch.py 
    [INFO] [launch]: All log files can be found below /home/ros2/.ros/log/2024-07-16-10-10-35-469979-thinkpad-364
    [INFO] [launch]: Default logging verbosity is set to INFO
    [INFO] [component_container-1]: process started with pid [378]
    [component_container-1] [INFO] [1721110235.858445227] [oak_container]: Load Library: /opt/ros/humble/lib/librobot_state_publisher_node.so
    [component_container-1] [INFO] [1721110235.863551060] [oak_container]: Found class: rclcpp_components::NodeFactoryTemplate<robot_state_publisher::RobotStatePublisher>
    [component_container-1] [INFO] [1721110235.863579507] [oak_container]: Instantiate class: rclcpp_components::NodeFactoryTemplate<robot_state_publisher::RobotStatePublisher>
    [component_container-1] [INFO] [1721110235.869022040] [oak_state_publisher]: got segment oak
    [component_container-1] [INFO] [1721110235.869040687] [oak_state_publisher]: got segment oak-d-base-frame
    [component_container-1] [INFO] [1721110235.869044891] [oak_state_publisher]: got segment oak_imu_frame
    [component_container-1] [INFO] [1721110235.869047947] [oak_state_publisher]: got segment oak_left_camera_frame
    [component_container-1] [INFO] [1721110235.869050868] [oak_state_publisher]: got segment oak_left_camera_optical_frame
    [component_container-1] [INFO] [1721110235.869053590] [oak_state_publisher]: got segment oak_model_origin
    [component_container-1] [INFO] [1721110235.869056257] [oak_state_publisher]: got segment oak_rgb_camera_frame
    [component_container-1] [INFO] [1721110235.869059074] [oak_state_publisher]: got segment oak_rgb_camera_optical_frame
    [component_container-1] [INFO] [1721110235.869061823] [oak_state_publisher]: got segment oak_right_camera_frame
    [component_container-1] [INFO] [1721110235.869064539] [oak_state_publisher]: got segment oak_right_camera_optical_frame
    [INFO] [launch_ros.actions.load_composable_nodes]: Loaded node '/oak_state_publisher' in container 'oak_container'
    [component_container-1] [INFO] [1721110235.869978600] [oak_container]: Load Library: /home/ros2/dev/fast_usv_gimbal/install/depthai_ros_driver/lib/libdepthai_ros_driver.so
    [component_container-1] [INFO] [1721110235.908728814] [oak_container]: Found class: rclcpp_components::NodeFactoryTemplate<depthai_ros_driver::Camera>
    [component_container-1] [INFO] [1721110235.908796527] [oak_container]: Instantiate class: rclcpp_components::NodeFactoryTemplate<depthai_ros_driver::Camera>
    [component_container-1] [INFO] [1721110235.916522009] [oak]: No ip/mxid specified, connecting to the next available device.
    [component_container-1] [ERROR] [1721110253.565013351] [oak]: Failed to find device after booting, error message: X_LINK_DEVICE_NOT_FOUND
    [component_container-1] [INFO] [1721110253.565149140] [oak]: No ip/mxid specified, connecting to the next available device.
    [component_container-1] [2024-07-16 10:10:56.664] [depthai] [warning] Skipping X_LINK_BOOTLOADER device with name "1.9" ()
    [component_container-1] [ERROR] [1721110257.701019261] [oak]: No available devices
    [component_container-1] [INFO] [1721110257.701173208] [oak]: No ip/mxid specified, connecting to the next available device.
    [component_container-1] [ERROR] [1721110261.800907928] [oak]: No available devices
    [component_container-1] [INFO] [1721110261.801063424] [oak]: No ip/mxid specified, connecting to the next available device.
    [component_container-1] [ERROR] [1721110265.937104683] [oak]: No available devices
    [component_container-1] [INFO] [1721110265.937274773] [oak]: No ip/mxid specified, connecting to the next available device.
    [WARNING] [launch]: user interrupted with ctrl-c (SIGINT)

    Other Tests

When I run the cam_test.py from the repository depthai-python I got the correct behavior. Below are the steps:

  1. Clone the repo from depthai-python
  2. In the folder depthai-python/utilities, install the requirements
  3. Connect the camera OAK-D-LR, bootloader version 0.028, via USB 3.
  4. Run the script cam_test.py
    $ ./cam_test.py 
    DepthAI version: 2.24.0.0
    DepthAI path: /home/ros2/.local/lib/python3.10/site-packages/depthai.cpython-310-x86_64-linux-gnu.so
    Enabled cameras:
    cama : color
    camb : color
    camc : color
    CAM:  cama
    CAM:  camb
    CAM:  camc
    [19443010616C742700] [1.1.4.2] [1.132] [ColorCamera(7)] [warning] Unsupported resolution set for detected camera AR0234, needs 1200_P, defaulting to it
    [19443010616C742700] [1.1.4.2] [1.132] [ColorCamera(5)] [warning] Unsupported resolution set for detected camera AR0234, needs 1200_P, defaulting to it
    [19443010616C742700] [1.1.4.2] [1.133] [ColorCamera(3)] [warning] Unsupported resolution set for detected camera AR0234, needs 1200_P, defaulting to it
    Connected cameras:
    -socket CAM_A : AR0234 1920 x 1200 focus:fixed - COLOR
    -socket CAM_B : AR0234 1920 x 1200 focus:fixed - COLOR
    -socket CAM_C : AR0234 1920 x 1200 focus:fixed - COLOR
    USB speed: SUPER
    IR drivers: []
    Cam:      cama          camb          camc     [host | capture timestamp]
    FPS:  17.56| 17.65  17.55| 17.65  17.65| 17.65

    dmesg output

$ sudo dmesg
[ 5576.711520] usb 1-1.4.2: USB disconnect, device number 24
[ 5580.058112] usb 1-1.4.2: new high-speed USB device number 25 using xhci_hcd
[ 5580.207118] usb 1-1.4.2: New USB device found, idVendor=03e7, idProduct=f63c, bcdDevice= 1.00
[ 5580.207123] usb 1-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5580.207124] usb 1-1.4.2: Product: Luxonis Bootloader
[ 5580.207125] usb 1-1.4.2: Manufacturer: Intel Corporation
[ 5580.207126] usb 1-1.4.2: SerialNumber: 19443010616C742700
[ 5719.303393] usb 1-1.4.2: USB disconnect, device number 25
[ 5719.979285] pcieport 0000:00:1d.0: PME: Spurious native interrupt!
[ 5720.323030] usb 4-1.4.2: new SuperSpeed USB device number 7 using xhci_hcd
[ 5720.344211] usb 4-1.4.2: New USB device found, idVendor=03e7, idProduct=f63b, bcdDevice= 1.00
[ 5720.344221] usb 4-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5720.344225] usb 4-1.4.2: Product: Luxonis Device
[ 5720.344227] usb 4-1.4.2: Manufacturer: Intel Corporation
[ 5720.344230] usb 4-1.4.2: SerialNumber: 19443010616C742700

Expected behavior From the _deptai_rosdriver was expected the node creation and topic availability to acquire image from the camera via USB.

Pipeline Graph

The pipeline Graph did not created an image graph. However the command was executed with verbose, and the output are:

$ pipeline_graph run "ros2 launch depthai_ros_driver camera.launch.py" -v
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-ros2'
[INFO] [launch]: All log files can be found below /home/ros2/.ros/log/2024-07-16-11-09-02-625957-thinkpad-1627
[INFO] [launch]: Default logging verbosity is set to INFO
[INFO] [component_container-1]: process started with pid [1641]
[component_container-1] [INFO] [1721113743.008203251] [oak_container]: Load Library: /opt/ros/humble/lib/librobot_state_publisher_node.so
[component_container-1] [INFO] [1721113743.012400338] [oak_container]: Found class: rclcpp_components::NodeFactoryTemplate<robot_state_publisher::RobotStatePublisher>
[component_container-1] [INFO] [1721113743.012433490] [oak_container]: Instantiate class: rclcpp_components::NodeFactoryTemplate<robot_state_publisher::RobotStatePublisher>
[component_container-1] [INFO] [1721113743.021323585] [oak_state_publisher]: got segment oak
[component_container-1] [INFO] [1721113743.021356339] [oak_state_publisher]: got segment oak-d-base-frame
[component_container-1] [INFO] [1721113743.021362779] [oak_state_publisher]: got segment oak_imu_frame
[component_container-1] [INFO] [1721113743.021367236] [oak_state_publisher]: got segment oak_left_camera_frame
[component_container-1] [INFO] [1721113743.021371594] [oak_state_publisher]: got segment oak_left_camera_optical_frame
[component_container-1] [INFO] [1721113743.021375878] [oak_state_publisher]: got segment oak_model_origin
[component_container-1] [INFO] [1721113743.021379849] [oak_state_publisher]: got segment oak_rgb_camera_frame
[component_container-1] [INFO] [1721113743.021384108] [oak_state_publisher]: got segment oak_rgb_camera_optical_frame
[component_container-1] [INFO] [1721113743.021388192] [oak_state_publisher]: got segment oak_right_camera_frame
[component_container-1] [INFO] [1721113743.021392152] [oak_state_publisher]: got segment oak_right_camera_optical_frame
[component_container-1] [INFO] [1721113743.022823541] [oak_container]: Load Library: /home/ros2/dev/fast_usv_gimbal/install/depthai_ros_driver/lib/libdepthai_ros_driver.so
[INFO] [launch_ros.actions.load_composable_nodes]: Loaded node '/oak_state_publisher' in container 'oak_container'
[component_container-1] [INFO] [1721113743.062883269] [oak_container]: Found class: rclcpp_components::NodeFactoryTemplate<depthai_ros_driver::Camera>
[component_container-1] [INFO] [1721113743.062923890] [oak_container]: Instantiate class: rclcpp_components::NodeFactoryTemplate<depthai_ros_driver::Camera>
[component_container-1] [2024-07-16 11:09:03.064] [depthai] [debug] Library information - version: 2.26.1, commit:  from , build: 2024-06-12 13:10:23 +0000, libusb enabled: true
[component_container-1] [2024-07-16 11:09:03.070] [depthai] [debug] Initialize - finished
[component_container-1] [INFO] [1721113743.070189717] [oak]: No ip/mxid specified, connecting to the next available device.
[component_container-1] [2024-07-16 11:09:03.125] [depthai] [debug] Resources - Archive 'depthai-bootloader-fwp-0.0.28.tar.xz' open: 1ms, archive read: 58ms
[component_container-1] [2024-07-16 11:09:03.409] [depthai] [debug] Resources - Archive 'depthai-device-fwp-24a3b465b979de3f69410cd225914d8bd029f3ba.tar.xz' open: 1ms, archive read: 342ms
[component_container-1] [2024-07-16 11:09:03.588] [host] [debug] Device - OpenVINO version: universal
[component_container-1] [19443010616C742700] [1.1.4.2] [1721113743.588] [host] [debug] Device - BoardConfig: {"camera":[],"emmc":null,"gpio":[],"imu":null,"logDevicePrints":null,"logPath":null,"logSizeMax":null,"logVerbosity":null,"network":{"mtu":0,"xlinkTcpNoDelay":true},"nonExclusiveMode":false,"pcieInternalClock":null,"sysctl":[],"uart":[],"usb":{"flashBootedPid":63037,"flashBootedVid":999,"manufacturer":"","maxSpeed":4,"pid":63035,"productName":"","vid":999},"usb3PhyInternalClock":null,"uvc":null,"watchdogInitialDelayMs":null,"watchdogTimeoutMs":null} 
[component_container-1] libnop:
[component_container-1] 0000: b9 12 b9 07 81 e7 03 81 3b f6 81 e7 03 81 3d f6 04 bd 00 bd 00 b9 02 00 01 ba 00 be be bb 00 bb
[component_container-1] 0020: 00 be be be be be be be 00 bb 00 be be
[component_container-1] [2024-07-16 11:09:03.606] [depthai] [debug] Searching for booted device: DeviceInfo(name=1.1.4.2, mxid=19443010616C742700, X_LINK_BOOTLOADER, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_SUCCESS), name used as hint only
[component_container-1] [2024-07-16 11:09:03.611] [depthai] [debug] Connected bootloader version 0.0.28
[component_container-1] [19443010616C742700] [1.1.4.2] [1721113744.455] [host] [debug] Booting FW with Bootloader. Version 0.0.28, Time taken: 843ms
[component_container-1] [2024-07-16 11:09:04.455] [depthai] [debug] DeviceBootloader about to be closed...
[component_container-1] [2024-07-16 11:09:04.456] [depthai] [debug] XLinkResetRemote of linkId: (0)
[component_container-1] [2024-07-16 11:09:05.702] [depthai] [debug] DeviceBootloader closed, 1247
[component_container-1] [2024-07-16 11:09:05.705] [depthai] [debug] Searching for booted device: DeviceInfo(name=1.1.4.2, mxid=19443010616C742700, X_LINK_BOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_SUCCESS), name used as hint only
[component_container-1] [ERROR] [1721113760.712890399] [oak]: Failed to find device after booting, error message: X_LINK_DEVICE_NOT_FOUND
[component_container-1] [INFO] [1721113760.713083698] [oak]: No ip/mxid specified, connecting to the next available device.
[component_container-1] [2024-07-16 11:09:23.841] [depthai] [warning] Skipping X_LINK_BOOTLOADER device with name "1.1.4.2" ()
[component_container-1] [ERROR] [1721113764.873015737] [oak]: No available devices
[component_container-1] [INFO] [1721113764.873207918] [oak]: No ip/mxid specified, connecting to the next available device.
[component_container-1] [ERROR] [1721113768.977108214] [oak]: No available devices
[component_container-1] [INFO] [1721113768.977295921] [oak]: No ip/mxid specified, connecting to the next available device.
[component_container-1] [ERROR] [1721113773.072916174] [oak]: No available devices
[component_container-1] [INFO] [1721113773.073080861] [oak]: No ip/mxid specified, connecting to the next available device.
[component_container-1] [ERROR] [1721113777.197040924] [oak]: No available devices

Attach system log

Serafadam commented 1 month ago

Hi, just to be sure, could you run

echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="03e7", MODE="0666"' | sudo tee /etc/udev/rules.d/80-movidius.rules
sudo udevadm control --reload-rules && sudo udevadm trigger

and replug the device after that?

trocolit2 commented 1 month ago

Hi, @Serafadam

Thanks for your reply. I did it already. I think the udev rules are correct, otherwise, I will not be able to get the information from the device, like the version and images (posted https://github.com/luxonis/depthai-ros/issues/560#issue-2407423284).

Adittional information

I tested with the docker image(luxonis/depthai:latest), and I was able to connect the camera.

$docker run --privileged -v /dev/bus/usb:/dev/bus/usb --device-cgroup-rule='c 189:* rmw' -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix --network host --rm -i -t luxonis/depthai:latest python3 /depthai/depthai_demo.py
Using depthai module from:  /root/.local/lib/python3.9/site-packages/depthai.cpython-39-x86_64-linux-gnu.so
Depthai version installed:  2.24.0.0
/depthai/depthai_demo.py:589: DeprecationWarning: sipPyTypeDict() is deprecated, the extension module should use sipPyTypeDictRef() instead
  class WorkerSignals(QObject):
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
Setting up demo...
Available devices:
[0] 19443010616C742700 [X_LINK_BOOTLOADER]
USB Connection speed: UsbSpeed.SUPER
Downloading /root/.cache/blobconverter/mobilenet-ssd_openvino_2021.4_6shave.blob...

Done
[19443010616C742700] [1.9] [21.037] [ColorCamera(6)] [warning] Unsupported resolution set for detected camera AR0234, needs 1200_P, defaulting to it
[19443010616C742700] [1.9] [21.038] [MonoCamera(0)] [error] AR0234 only supports THE_1200_P resolution, defaulting to it

GUI Screenshot image

However, the issue with the ROS driver continues.

trocolit2 commented 1 month ago

Dear @Serafadam

I tested the camera with the PoE and it t works with the deptai_ros_driver launch. But when I connect the camera via USB, the issue persists.

Did you manage to reproduce the issue?

Regards.

Serafadam commented 1 month ago

Hi, unfortunately I haven't been able to replicate that issue, but could you test if you can connect via either MXID or USB port name directly? This can be done by setting either following parameters: camera.i_mx_id: 19443010616C742700 or camera.i_usb_port_id: 1.1.4.2

trocolit2 commented 1 month ago

Hi @Serafadam

I tested with your suggestion, related the mxid and the _usb_portid, and it make no difference.

To help with the issue replication, I can generate an docker image with my base system environment, and share with you. Is it work for you?

Regards.