jakaskerl
I have gone and completely retraced all of my steps in setting up my environment so hopefully something can be uncovered. Here is my full walkthrough of my setup, which I have done in a new directory as to ensure there is no previous conflicts:
Context for machine: Python 3.10.11, Windows 11, running all prompts via CMD (non-admin mode).
Started new folder in Documents directory.
Followed install steps for windows (https://docs.luxonis.com/software-v3/depthai/) for DepthAI v3:
git clone https://github.com/luxonis/depthai-core.git
cd depthai-core
# Create and source venv
python -m venv venv
.\venv\Scripts\activate
# Install requirements
python examples\python\install_requirements.py
Oak-D-Lite was plugged into desktop via USB 3.0 cable (in Blue USB3.0 port).
Windows USB connection noise pings.
Followed and ran example code steps on same DepthAI v3 page (I used the camera_all.py example):
cd examples\python
# Display all camera streams
python Camera\camera_all.py
Windows USB connection noise pings once again.
Camera feeds all show with effectively no latency or delay in picture / video quality. No issue during streaming for any amount of time (ran for most 10 mins just to see).
Left-Click on Display window and press 'Q' on keyboard.
Windows USB disconnection noise pings.
Images and video streams freeze for maybe 5-10 seconds before disappearing.
Without DEPTHAI_LEVEL=debug or DEPTHAI_DEBUG=1, no errors or output show in CMD.
When same Camera\camera_all.py script is run again after closing of previous stream, operation seems to halt in CMD and pause for about 10 seconds before it displays:
[2025-10-20 10:46:42.834] [depthai] [warning] skipping X_LINK_UNBOOTED device having name "1.1"
multiple times in succession before providing error:
Traceback (most recent call last):
File "C:\...\depthai-core\examples\python\Camera\camera_all.py", line 7, in <module>
device = dai.Device()
RuntimeError: No available devices
In debugging mode, this is that same error:
[2025-10-20 10:59:16.351] [depthai] [info] Environment variable DEPTHAI_INSTALL_SIGNAL_HANDLER is not set. Using default value: ''
[2025-10-20 10:59:16.351] [depthai] [info] Environment variable DEPTHAI_LIBUSB_ANDROID_JAVAVM is not set. Using default value: ''
[2025-10-20 10:59:16.351] [depthai] [debug] Python bindings - version: 3.1.0 from 2025-10-15 10:15:47 +0200 build: 2025-10-15 18:05:53 +0000
[2025-10-20 10:59:16.351] [depthai] [debug] Library information - version: 3.1.0, commit: 89fd1e837fe1c64e8250036ccc6ec7fcd706ad6e from 2025-10-15 10:15:47 +0200, build: 2025-10-15 18:05:53 +0000, libusb enabled: true
[2025-10-20 10:59:16.355] [depthai] [info] Environment variable DEPTHAI_PROFILING is not set. Using default value: ''
[2025-10-20 10:59:16.356] [depthai] [info] Environment variable XLINK_LEVEL is not set. Using default value: ''
[2025-10-20 10:59:16.356] [depthai] [debug] Initialize - finished
[2025-10-20 10:59:16.356] [depthai] [info] Environment variable DEPTHAI_SEARCH_TIMEOUT is not set. Using default value: ''
[2025-10-20 10:59:16.356] [depthai] [info] Environment variable DEPTHAI_PROTOCOL is not set. Using default value: ''
[2025-10-20 10:59:16.356] [depthai] [info] Environment variable DEPTHAI_PLATFORM is not set. Using default value: ''
[2025-10-20 10:59:16.394] [depthai] [debug] Resources - Archive 'depthai-bootloader-fwp-0.0.28.tar.xz' open: 1ms, archive read: 41ms
[2025-10-20 10:59:16.605] [depthai] [debug] Resources - Archive 'depthai-device-fwp-0ada9b9800478cf2c7056cea5c2bab2c8f6a2cbd.tar.xz' open: 1ms, archive read: 251ms
[2025-10-20 10:59:17.605] [depthai] [info] Environment variable DEPTHAI_DEVICE_MXID_LIST is not set. Using default value: ''
[2025-10-20 10:59:17.605] [depthai] [info] Environment variable DEPTHAI_DEVICE_ID_LIST is not set. Using default value: ''
[2025-10-20 10:59:17.605] [depthai] [info] Environment variable DEPTHAI_DEVICE_NAME_LIST is not set. Using default value: ''
[2025-10-20 10:59:17.605] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_ERROR)
[2025-10-20 10:59:19.382] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_ERROR)
[2025-10-20 10:59:21.199] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_ERROR)
[2025-10-20 10:59:23.026] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_ERROR)
[2025-10-20 10:59:24.853] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_ERROR)
[2025-10-20 10:59:26.691] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_ERROR)
[2025-10-20 10:59:26.800] [depthai] [warning] Skipping X_LINK_UNBOOTED device with name "1.1" ()
[2025-10-20 10:59:28.999] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_ERROR)
[2025-10-20 10:59:28.999] [depthai] [warning] skipping X_LINK_UNBOOTED device having name "1.1"
[2025-10-20 10:59:28.999] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_ERROR)
[2025-10-20 10:59:29.000] [depthai] [warning] skipping X_LINK_UNBOOTED device having name "1.1"
Traceback (most recent call last):
File "C:\...\depthai-core\examples\python\Camera\camera_all.py", line 7, in <module>
device = dai.Device()
RuntimeError: No available devices
Error is only resolved and allows camera to stream again after device has been unplugged from USB and replugged.
When camera is unplugged, normal windows USB disconnection sound still pings. Same USB connection when replugged.
When camera_all.py script is run during debug mode after this replug, here is the output with some errors shown. Camera streams all still run without issue to the front-end.
This is the output before the camera streams are closed (it is alot):
[2025-10-20 11:03:09.346] [depthai] [info] Environment variable DEPTHAI_INSTALL_SIGNAL_HANDLER is not set. Using default value: ''
[2025-10-20 11:03:09.347] [depthai] [info] Environment variable DEPTHAI_LIBUSB_ANDROID_JAVAVM is not set. Using default value: ''
[2025-10-20 11:03:09.347] [depthai] [debug] Python bindings - version: 3.1.0 from 2025-10-15 10:15:47 +0200 build: 2025-10-15 18:05:53 +0000
[2025-10-20 11:03:09.347] [depthai] [debug] Library information - version: 3.1.0, commit: 89fd1e837fe1c64e8250036ccc6ec7fcd706ad6e from 2025-10-15 10:15:47 +0200, build: 2025-10-15 18:05:53 +0000, libusb enabled: true
[2025-10-20 11:03:09.351] [depthai] [info] Environment variable DEPTHAI_PROFILING is not set. Using default value: ''
[2025-10-20 11:03:09.351] [depthai] [info] Environment variable XLINK_LEVEL is not set. Using default value: ''
[2025-10-20 11:03:09.351] [depthai] [debug] Initialize - finished
[2025-10-20 11:03:09.351] [depthai] [info] Environment variable DEPTHAI_SEARCH_TIMEOUT is not set. Using default value: ''
[2025-10-20 11:03:09.351] [depthai] [info] Environment variable DEPTHAI_PROTOCOL is not set. Using default value: ''
[2025-10-20 11:03:09.352] [depthai] [info] Environment variable DEPTHAI_PLATFORM is not set. Using default value: ''
[2025-10-20 11:03:09.390] [depthai] [debug] Resources - Archive 'depthai-bootloader-fwp-0.0.28.tar.xz' open: 1ms, archive read: 40ms
[2025-10-20 11:03:09.399] [depthai] [info] Environment variable DEPTHAI_DEVICE_MXID_LIST is not set. Using default value: ''
[2025-10-20 11:03:09.399] [depthai] [info] Environment variable DEPTHAI_DEVICE_ID_LIST is not set. Using default value: ''
[2025-10-20 11:03:09.399] [depthai] [info] Environment variable DEPTHAI_DEVICE_NAME_LIST is not set. Using default value: ''
[2025-10-20 11:03:09.399] [depthai] [info] Adding device to the filtered list: DeviceInfo(name=1.1, deviceId=14442C10D1DAD9D200, X_LINK_UNBOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_SUCCESS)
[2025-10-20 11:03:09.399] [host] [debug] Device - OpenVINO version: universal
[2025-10-20 11:03:09.399] [depthai] [info] Environment variable DEPTHAI_WATCHDOG is not set. Using default value: ''
[2025-10-20 11:03:09.399] [depthai] [info] Environment variable DEPTHAI_WATCHDOG_INITIAL_DELAY is not set. Using default value: ''
[14442C10D1DAD9D200] [1.1] [1760972589.400] [host] [debug] Device - BoardConfig: {"camera":[],"defaultImuExtr":{},"emmc":null,"gpio":[],"imu":null,"logDevicePrints":true,"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}
libnop:
0000: b9 13 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
0020: 00 be be be be be be 01 00 bb 00 be be bb 00
[2025-10-20 11:03:09.603] [depthai] [debug] Resources - Archive 'depthai-device-fwp-0ada9b9800478cf2c7056cea5c2bab2c8f6a2cbd.tar.xz' open: 1ms, archive read: 253ms
[2025-10-20 11:03:09.603] [depthai] [info] Environment variable DEPTHAI_DEVICE_BINARY is not set. Using default value: ''
[2025-10-20 11:03:09.613] [depthai] [info] Environment variable DEPTHAI_CONNECT_TIMEOUT is not set. Using default value: ''
[2025-10-20 11:03:09.613] [depthai] [info] Environment variable DEPTHAI_BOOTUP_TIMEOUT is not set. Using default value: ''
[2025-10-20 11:03:10.574] [depthai] [debug] Searching for booted device: DeviceInfo(name=1.1, deviceId=14442C10D1DAD9D200, X_LINK_BOOTED, X_LINK_USB_VSC, X_LINK_MYRIAD_X, X_LINK_SUCCESS), name used as hint only
[2025-10-20 11:03:11.604] [depthai] [info] Environment variable DEPTHAI_CRASHDUMP is not set. Using default value: ''
[14442C10D1DAD9D200] [1.1] [1.017] [system] [warning] PRINT:LeonCss: [OK]: INIT_NOC: noc probes timer create
[OK]: INIT_NOC: noc probes timer start
[OK]: INIT_NOC: ddr bandwith profiling!
BootloaderConfig.options1 checksum doesn't match. Is: 0x102C4414 should be: 0x37E44D64
BootloaderConfig.options2 checksum doesn't match. Is: 0x0402058A should be: 0x59A0085D
GPIO boot mode 0x16, interface USBD
Setting aons(0..4) back to boot from flash (offset = 0)
====ENABLE WATCHDOG====1
initial keepalive, countdown: 10
PLL0: 700000 AUX_IO0: 24000 AUX_IO1: 24000 MCFG: 24000 MECFG: 24000
Board init ret 3
DepthAI Firmware - version: 0ada9b9800478cf2c7056cea5c2bab2c8f6a2cbd
eeprom configuration version: 55AA0007
Reading VERSION 7 --- ->
eeprom configuration load from user area, status: 0
Reading VERSION 7 --- ->
Found a device/board entry matching the eeprom data - Board: Device: OAK-D-LITE
Board options: 00000000
--> brdInit ...
brdInitAuxDevices: Error: SC = 27: io_initialize expander_cam_gpios_1 [OK]
spi_N25Q_init: Flash JEDEC ID: ff ff ff
Invalid Flash JEDEC ID... No NOR available
Could not register the spi device
inited hal ---
def: 53 46 45 34 10 06 08 34 10 53 14 45 46 08 06
val: 53 46 45 34 10 06 08 34 10 53 14 45 46 08 06
Opening bus for IR driver: 1
Failed to probe IR driver LM3644
Opening bus for IR driver: 2
Failed to probe IR driver LM3644
Opening bus for IR driver: 3
Failed to probe IR driver LM3644
Closing EEPROm!
MyriaX board configuration
pll0 frequency: 700000, ref0 frequency: 24000
Is booted from flash by bootloader: 0
Networking not available...
=== Enumerating on socket: Cam_A / RGB / Center
skipped OV7251
>> Registered camera IMX214R0 (imx214) as /dev/Camera_0
camera socket: 0, name: color
config - w: 2104, h: 1560, type: COLOR
config - w: 1920, h: 1080, type: COLOR
config - w: 3840, h: 2160, type: COLOR
config - w: 4056, h: 3040, type: COLOR
config - w: 4208, h: 3120, type: COLOR
Adding socket 0: cam 4. Sen name: IMX214
=== Enumerating on socket: Cam_B / Left
>> Registered camera MV200 (ov7750) as /dev/Camera_1
camera socket: 1, name: left
config - w: 640, h: 400, type: MONO
config - w: 640, h: 480, type: MONO
Adding socket 1: cam 6. Sen name: OV7251
=== Enumerating on socket: Cam_C / Right
>> Registered camera MV200 (ov7750) as /dev/Camera_2
camera socket: 2, name: right
config - w: 640, h: 400, type: MONO
config - w: 640, h: 480, type: MONO
Adding socket 2: cam 6. Sen name: OV7251
Found a device/board entry matching the eeprom data - Board: Device: OAK-D-LITE
UsbPumpVscAppI_Event: 5 VSC2_EVENT_ATTACH
UsbPumpVscAppI_Event: 4 VSC2_EVENT_RESET
UsbPumpVscAppI_Event: 0 VSC2_EVENT_INTERFACE_UP
initial keepalive, countdown: 9
IMU version: BMI270
Initializing XLink...
Done!
Usb connection speed: Super - USB 3.0
Reading..........Reading VERSION 7 --- ->
Found a device/board entry matching the eeprom data - Board: Device: OAK-D-LITE
Temperature: Driver registered.
Temperature: Initialized driver.
Temperature: Sensor opened: CSS.
Temperature: Sensor opened: MSS.
Temperature: Sensor opened: UPA.
Temperature: Sensor opened: DSS.
[14442C10D1DAD9D200] [1.1] [1.019] [system] [info] Memory Usage - DDR: 0.12 / 333.26 MiB, CMX: 2.04 / 2.50 MiB, LeonOS Heap: 7.25 / 81.17 MiB, LeonRT Heap: 2.89 / 39.20 MiB / NOC ddr: 26 MB/s
[14442C10D1DAD9D200] [1.1] [1.019] [system] [info] Temperatures - Average: 30.86C, CSS: 32.25C, MSS 29.59C, UPA: 30.56C, DSS: 31.04C
[14442C10D1DAD9D200] [1.1] [1.019] [system] [info] Cpu Usage - LeonOS 70.84%, LeonRT: 1.69%
[14442C10D1DAD9D200] [1.1] [1.027] [system] [warning] PRINT:LeonCss: I: [Timesync] [ 5329895] [XLin] startSync:186 Timesync | Callback not set
[2025-10-20 11:03:11.619] [depthai] [info] Environment variable DEPTHAI_RECORD is not set. Using default value: ''
[2025-10-20 11:03:11.619] [depthai] [info] Environment variable DEPTHAI_REPLAY is not set. Using default value: ''
[14442C10D1DAD9D200] [1.1] [1760972591.625] [host] [debug] Schema dump: {"connections":[{"node1Id":0,"node1Output":"0","node1OutputGroup":"dynamicOutputs","node2Id":3,"node2Input":"in","node2InputGroup":""},{"node1Id":1,"node1Output":"0","node1OutputGroup":"dynamicOutputs","node2Id":5,"node2Input":"in","node2InputGroup":""},{"node1Id":2,"node1Output":"0","node1OutputGroup":"dynamicOutputs","node2Id":7,"node2Input":"in","node2InputGroup":""}],"globalProperties":{"calibData":null,"cameraTuningBlobSize":null,"cameraTuningBlobUri":"","eepromId":0,"leonCssFrequencyHz":700000000.0,"leonMssFrequencyHz":700000000.0,"pipelineName":null,"pipelineVersion":null,"sippBufferSize":18432,"sippDmaBufferSize":16384,"xlinkChunkSize":-1},"nodes":[[0,{"alias":"","id":0,"ioInfo":[[["","inputControl"],{"blocking":true,"group":"","id":0,"name":"inputControl","queueSize":3,"type":3,"waitForMessage":false}],[["dynamicOutputs","0"],{"blocking":false,"group":"dynamicOutputs","id":3,"name":"0","queueSize":8,"type":0,"waitForMessage":false}],[["","mockIsp"],{"blocking":true,"group":"","id":1,"name":"mockIsp","queueSize":8,"type":3,"waitForMessage":false}],[["","raw"],{"blocking":false,"group":"","id":2,"name":"raw","queueSize":8,"type":0,"waitForMessage":false}]],"logLevel":1,"name":"Camera","parentId":-1,"properties":[185,21,185,33,0,3,0,136,0,0,0,0,128,240,128,183,185,3,129,95,1,130,48,158,212,238,129,95,1,185,5,129,48,184,129,79,144,129,95,1,0,130,48,81,142,238,185,5,129,95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,185,3,0,0,0,185,3,0,0,0,0,0,0,103,94,92,128,154,0,129,0,128,0,0,0,186,0,0,255,189,0,255,255,255,255,255,136,0,0,128,191,0,3,134,0,0,160,0,3,134,0,0,160,0,4,4,4,3,134,0,0,160,0,186,1,185,5,185,1,184,0,186,2,129,112,16,129,48,12,185,1,190,190,0,190]}],[1,{"alias":"","id":1,"ioInfo":[[["","inputControl"],{"blocking":true,"group":"","id":4,"name":"inputControl","queueSize":3,"type":3,"waitForMessage":false}],[["dynamicOutputs","0"],{"blocking":false,"group":"dynamicOutputs","id":7,"name":"0","queueSize":8,"type":0,"waitForMessage":false}],[["","mockIsp"],{"blocking":true,"group":"","id":5,"name":"mockIsp","queueSize":8,"type":3,"waitForMessage":false}],[["","raw"],{"blocking":false,"group":"","id":6,"name":"raw","queueSize":8,"type":0,"waitForMessage":false}]],"logLevel":1,"name":"Camera","parentId":-1,"properties":[185,21,185,33,0,3,0,136,0,0,0,0,128,144,128,161,185,3,129,95,1,130,80,244,86,144,129,95,1,185,5,129,176,71,129,27,239,129,95,1,0,130,32,162,213,238,185,5,129,95,1,0,129,128,244,129,86,144,129,95,1,48,128,224,128,218,0,0,128,238,95,1,0,185,3,0,48,6,185,3,133,95,1,134,48,224,218,238,129,95,1,130,176,244,86,144,0,0,192,6,128,217,128,238,95,0,128,176,128,159,0,186,0,1,255,189,0,255,255,255,255,255,136,0,0,128,191,0,3,134,0,0,160,0,3,134,0,0,160,0,4,4,4,3,134,0,0,160,0,186,1,185,5,185,1,184,0,186,2,129,128,2,129,224,1,185,1,190,190,0,190]}],[2,{"alias":"","id":2,"ioInfo":[[["","inputControl"],{"blocking":true,"group":"","id":8,"name":"inputControl","queueSize":3,"type":3,"waitForMessage":false}],[["dynamicOutputs","0"],{"blocking":false,"group":"dynamicOutputs","id":11,"name":"0","queueSize":8,"type":0,"waitForMessage":false}],[["","mockIsp"],{"blocking":true,"group":"","id":9,"name":"mockIsp","queueSize":8,"type":3,"waitForMessage":false}],[["","raw"],{"blocking":false,"group":"","id":10,"name":"raw","queueSize":8,"type":0,"waitForMessage":false}]],"logLevel":1,"name":"Camera","parentId":-1,"properties":[185,21,185,33,0,3,0,136,0,0,0,0,0,0,185,3,0,0,0,185,5,0,0,0,0,0,185,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,3,0,0,0,185,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186,0,2,255,189,0,255,255,255,255,255,136,0,0,128,191,0,3,134,0,0,160,0,3,134,0,0,160,0,4,4,4,3,134,0,0,160,0,186,1,185,5,185,1,184,0,186,2,129,128,2,129,224,1,185,1,190,190,0,190]}],[3,{"alias":"","id":3,"ioInfo":[[["","in"],{"blocking":true,"group":"","id":12,"name":"in","queueSize":3,"type":3,"waitForMessage":false}]],"logLevel":1,"name":"XLinkOut","parentId":-1,"properties":[185,3,136,0,0,128,191,189,7,95,95,120,95,48,95,48,0]}],[5,{"alias":"","id":5,"ioInfo":[[["","in"],{"blocking":true,"group":"","id":13,"name":"in","queueSize":3,"type":3,"waitForMessage":false}]],"logLevel":1,"name":"XLinkOut","parentId":-1,"properties":[185,3,136,0,0,128,191,189,7,95,95,120,95,49,95,48,0]}],[7,{"alias":"","id":7,"ioInfo":[[["","in"],{"blocking":true,"group":"","id":14,"name":"in","queueSize":3,"type":3,"waitForMessage":false}]],"logLevel":1,"name":"XLinkOut","parentId":-1,"properties":[185,3,136,0,0,128,191,189,7,95,95,120,95,50,95,48,0]}]]}
[14442C10D1DAD9D200] [1.1] [1760972591.626] [host] [debug] Asset map dump: {"map":{}}
[2025-10-20 11:03:11.648] [depthai] [info] Environment variable DEPTHAI_ENABLE_ANALYTICS_COLLECTION is not set. Using default value: ''
[2025-10-20 11:03:11.648] [depthai] [info] Logging disabled
[14442C10D1DAD9D200] [1.1] [1.065] [Camera(1)] [debug] Sensor type MONO selected automatically for camera on socket CAM_B. Officially supported sensor types: [MONO]
[14442C10D1DAD9D200] [1.1] [1.065] [Camera(1)] [debug] Full FoV configs:
[14442C10D1DAD9D200] [1.1] [1.065] [Camera(1)] [debug] 640x480 @ 99fps
[14442C10D1DAD9D200] [1.1] [1.065] [Camera(1)] [debug] Output requests: Request 0: size: 640x480, fps: 30, type: unset, resizeMode: CROP
[14442C10D1DAD9D200] [1.1] [1.065] [Camera(1)] [debug] Best camera config selected: 640x480 @ 30fps
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(0)] [debug] Sensor type COLOR selected automatically for camera on socket CAM_A. Officially supported sensor types: [COLOR]
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(0)] [debug] Full FoV configs:
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(0)] [debug] 2104x1560 @ 30.3fps
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(0)] [debug] 4208x3120 @ 28.5fps
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(0)] [debug] Output requests: Request 0: size: 4208x3120, fps: 30, type: unset, resizeMode: CROP
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(0)] [debug] Best camera config selected: 4208x3120 @ 28.5fps
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(2)] [debug] Sensor type MONO selected automatically for camera on socket CAM_C. Officially supported sensor types: [MONO]
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(2)] [debug] Full FoV configs:
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(2)] [debug] 640x480 @ 99fps
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(2)] [debug] Output requests: Request 0: size: 640x480, fps: 30, type: unset, resizeMode: CROP
[14442C10D1DAD9D200] [1.1] [1.066] [Camera(2)] [debug] Best camera config selected: 640x480 @ 30fps
[14442C10D1DAD9D200] [1.1] [1.068] [system] [info] SIPP (Signal Image Processing Pipeline) internal buffer size '18432'B, DMA buffer size: '16384'B
[14442C10D1DAD9D200] [1.1] [1.104] [system] [warning] PRINT:LeonMss: sippPalThreadCreate: Thread /SIPP created
[14442C10D1DAD9D200] [1.1] [1.103] [system] [info] ColorCamera allocated resources: no shaves; cmx slices: [10-15]
[14442C10D1DAD9D200] [1.1] [1.104] [Camera(1)] [debug] Patching intrinsics for socket 1
[14442C10D1DAD9D200] [1.1] [1.105] [Camera(1)] [debug] Original intrinsics for 640x480:
459.398 0.000 306.235
0.000 459.399 234.350
0.000 0.000 1.000
Patched intrinsics for 640x480:
459.398 0.000 306.235
0.000 459.399 234.350
0.000 0.000 1.000
[14442C10D1DAD9D200] [1.1] [1.106] [Camera(2)] [debug] Patching intrinsics for socket 2
[14442C10D1DAD9D200] [1.1] [1.106] [Camera(2)] [debug] Original intrinsics for 640x480:
455.173 0.000 326.494
0.000 454.884 243.941
0.000 0.000 1.000
Patched intrinsics for 640x480:
455.173 0.000 326.494
0.000 454.884 243.941
0.000 0.000 1.000
[14442C10D1DAD9D200] [1.1] [1.106] [Camera(0)] [info] Camera::Create: Number of frames for the ISP frame pool was capped by the max size of the pool or increased to minPoolFramesIsp (=2) to 2 (orig: 3) | maxSizePoolIsp: 10485760 B | isp frame size: 19693440 B
[14442C10D1DAD9D200] [1.1] [1.106] [Camera(0)] [info] Camera::Create: Number of frames for the RAW frame pool was capped by the max size of the pool or increased to minPoolFramesIsp (=2) to 2 (orig: 3) | maxSizePoolRaw: 10485760 B | source frame size: 16411200 B
[14442C10D1DAD9D200] [1.1] [1.106] [Camera(0)] [debug] Camera scale factors: hNum: 0, hDen: 0, vNum: 0, vDen: 0
[14442C10D1DAD9D200] [1.1] [1.107] [Camera(0)] [debug] Patching intrinsics for socket 0
[14442C10D1DAD9D200] [1.1] [1.107] [Camera(0)] [debug] Original intrinsics for 3840x2160:
2987.422 0.000 1961.200
0.000 2987.964 1022.015
0.000 0.000 1.000
Patched intrinsics for 4208x3120:
2987.422 0.000 2145.200
0.000 2987.964 1502.015
0.000 0.000 1.000
[14442C10D1DAD9D200] [1.1] [1.116] [system] [warning] PRINT:LeonCss: [1970-01-01 00:00:01.111] [info] Time taken to build the pipeline: 46ms
== FSYNC enabled for cam mask 0x0
CAM ID: 2, width: 640, height: 480, orientation: 0
CAM ID: 1, width: 640, height: 480, orientation: 0
CAM ID: 0, width: 4208, height: 3120, orientation: 0
getDefaultDtp: camType:4, color:1, orientation:0
DTP: ext_dtp_database_lite
Loaded DTP, handle 0x84762d08
getDefaultDtp: camType:6, color:0, orientation:0
DTP: ext_dtp_database_lite
Found DTP, handle 0x84762d08
Broadcast7251: Successfully registered camera MV200 (ov7750) as /dev/Camera_bcast0
getDefaultDtp: camType:6, color:0, orientation:0
DTP: ext_dtp_database_lite
Found DTP, handle 0x84762d08
== SW-SYNC: 0, cam mask 0x7
Errors Begin Here
!!! Master Slave config is: single_master_slave !!!
[14442C10D1DAD9D200] [1.1] [1.116] [system] [warning] PRINT:LeonMss: LRT - build pipeline call
[14442C10D1DAD9D200] [1.1] [1.126] [system] [warning] PRINT:LeonCss: Starting camera 0, server 0x84762d08
[E] app_guzzi_command_callback():173: command->id:1
[E] app_guzzi_command_callback():193: command "1 0" sent
[E] iq_debug_create():161: iq_debug address 0x88834540
[E] hai_cm_driver_load_dtp():852: Features for camera IMX214R0 (imx214) are received
[E] set_dtp_ids():396: //VIV HAL: Undefined VCM DTP ID 0
[E] set_dtp_ids():405: //VIV HAL: Undefined NVM DTP ID 0
[E] set_dtp_ids():414: //VIV HAL: Undefined lights DTP ID 0
camera_id 0: 3A-sync to camera_alt_id 0
[14442C10D1DAD9D200] [1.1] [1.137] [system] [warning] PRINT:LeonCss: [E] camera_control_start():360: Camera_id = 0 started.
[E] hai_cm_sensor_select_mode():164: No suitable sensor mode. Selecting default one - 0 for start 4208x3120 at 0x0 fps min 29.000000 max 29.000000
[E] hai_cm_sensor_select_mode():164: No suitable sensor mode. Selecting default one - 0 for start 4208x3120 at 0x0 fps min 29.000000 max 29.000000
[14442C10D1DAD9D200] [1.1] [1.159] [system] [warning] PRINT:LeonCss: [E] vpipe_conv_config():1465: Exit Ok
[E] callback():133: Camera CB START_DONE event.
Starting camera 1, server 0x84762d08
[E] app_guzzi_command_callback():173: command->id:1
[E] app_guzzi_command_callback():193: command "1 1" sent
[14442C10D1DAD9D200] [1.1] [1.170] [system] [warning] PRINT:LeonCss: [E] iq_debug_create():161: iq_debug address 0x8837e3c0
[E] hai_cm_driver_load_dtp():852: Features for camera MV200 (ov7750) are received
[E] set_dtp_ids():396: //VIV HAL: Undefined VCM DTP ID 0
[E] set_dtp_ids():405: //VIV HAL: Undefined NVM DTP ID 0
[E] set_dtp_ids():414: //VIV HAL: Undefined lights DTP ID 0
camera_id 1: 3A-sync to camera_alt_id 1
[E] camera_control_start():360: Camera_id = 1 started.
[E] lens_move_to_def_pos_do():251: Error executing af_move_to_pos()!
[14442C10D1DAD9D200] [1.1] [1.181] [system] [warning] PRINT:LeonCss: inc_camera_process set exposure and gain
osDrvImx214Control:527: Start stream
[14442C10D1DAD9D200] [1.1] [1.214] [system] [warning] PRINT:LeonCss: [E] vpipe_conv_config():1465: Exit Ok
[E] callback():133: Camera CB START_DONE event.
Starting camera 2, server 0x84762d08
[E] app_guzzi_command_callback():173: command->id:1
[E] app_guzzi_command_callback():193: command "1 2" sent
[14442C10D1DAD9D200] [1.1] [1.225] [system] [warning] PRINT:LeonCss: [E] iq_debug_create():161: iq_debug address 0x87efa800
[E] hai_cm_driver_load_dtp():852: Features for camera MV200 (ov7750) are received
[E] set_dtp_ids():396: //VIV HAL: Undefined VCM DTP ID 0
[E] set_dtp_ids():405: //VIV HAL: Undefined NVM DTP ID 0
[E] set_dtp_ids():414: //VIV HAL: Undefined lights DTP ID 0
camera_id 2: 3A-sync to camera_alt_id 1
[14442C10D1DAD9D200] [1.1] [1.236] [system] [warning] PRINT:LeonCss: [E] camera_control_start():360: Camera_id = 2 started.
[E] lens_move_to_def_pos_do():251: Error executing af_move_to_pos()!
inc_camera_process set exposure and gain
[14442C10D1DAD9D200] [1.1] [1.247] [system] [warning] PRINT:LeonMss: finished sippPrePrepareLinesFreeRT
[14442C10D1DAD9D200] [1.1] [1.280] [system] [warning] PRINT:LeonCss: [E] vpipe_conv_config():1465: Exit Ok
[E] guzzi_event_send():324: Send: Event ID=20003 no registered recipient
[E] guzzi_event_send():324: Send: Event ID=20004 no registered recipient
[E] callback():133: Camera CB START_DONE event.
[14442C10D1DAD9D200] [1.1] [1.291] [system] [warning] PRINT:LeonCss: inc_camera_process set exposure and gain
AF_TRIGGER on camera 0
[E] app_guzzi_command_callback():173: command->id:5
[E] camera_control_focus_trigger():604: Focus trigger succeeded camera_id = 0.
[E] app_guzzi_command_callback():218: command "5 0" sent
Error Ends Here
Starting Guzzi command handling loop...
[14442C10D1DAD9D200] [1.1] [1.335] [system] [warning] PRINT:LeonMss: finished sippPrePrepareLinesFreeRT
finished sippPrePrepareLinesFreeRT
[14442C10D1DAD9D200] [1.1] [1.544] [system] [warning] PRINT:LeonCss: initial keepalive, countdown: 8
[14442C10D1DAD9D200] [1.1] [2.020] [system] [info] Memory Usage - DDR: 73.88 / 333.26 MiB, CMX: 2.10 / 2.50 MiB, LeonOS Heap: 47.33 / 81.17 MiB, LeonRT Heap: 4.18 / 39.20 MiB / NOC ddr: 251 MB/s
[14442C10D1DAD9D200] [1.1] [2.020] [system] [info] Temperatures - Average: 32.67C, CSS: 33.69C, MSS 33.21C, UPA: 31.77C, DSS: 32.01C
[14442C10D1DAD9D200] [1.1] [2.020] [system] [info] Cpu Usage - LeonOS 54.53%, LeonRT: 19.72%
These last 3 lines repeat while camera is running.
Device is then closed by pressing 'q' in camera stream window. Here is the entire output after video stream is closed (much smaller):
[14442C10D1DAD9D200] [1.1] [217.335] [system] [info] Memory Usage - DDR: 73.88 / 333.26 MiB, CMX: 2.10 / 2.50 MiB, LeonOS Heap: 47.33 / 81.17 MiB, LeonRT Heap: 4.18 / 39.20 MiB / NOC ddr: 696 MB/s
[14442C10D1DAD9D200] [1.1] [217.335] [system] [info] Temperatures - Average: 41.43C, CSS: 43.04C, MSS 41.20C, UPA: 40.04C, DSS: 41.43C
[14442C10D1DAD9D200] [1.1] [217.335] [system] [info] Cpu Usage - LeonOS 56.46%, LeonRT: 18.12%
[14442C10D1DAD9D200] [1.1] [1760972808.326] [host] [debug] Device about to be closed...
[2025-10-20 11:06:48.359] [depthai] [info] XLinkInHost node stopped - exception: MessageQueue was closed
[2025-10-20 11:06:48.359] [depthai] [info] XLinkInHost node stopped - exception: MessageQueue was closed
[2025-10-20 11:06:48.360] [depthai] [info] XLinkInHost node stopped - exception: MessageQueue was closed
[14442C10D1DAD9D200] [1.1] [1760972808.360] [host] [debug] Shutdown OK
[14442C10D1DAD9D200] [1.1] [1760972808.361] [host] [debug] Log thread exception caught: Couldn't read data from stream: '__log' (X_LINK_ERROR)
[14442C10D1DAD9D200] [1.1] [1760972808.361] [host] [debug] Timesync thread exception caught: Couldn't read data from stream: '__timesync' (X_LINK_ERROR)
[14442C10D1DAD9D200] [1.1] [1760972809.076] [host] [debug] Watchdog thread exception caught: Couldn't write data to stream: '__watchdog' (X_LINK_ERROR)
[2025-10-20 11:06:54.416] [depthai] [debug] XLinkResetRemote of linkId: (0)
[2025-10-20 11:06:54.416] [depthai] [info] Environment variable DEPTHAI_CRASHDUMP_TIMEOUT is not set. Using default value: '10500'
[14442C10D1DAD9D200] [1.1] [1760972814.416] [host] [debug] Device closed, 6090
This has been my pretty much entire setup with the issue I have been having with my Oak-D-Lite.
Here is the code for the camera_all.py script that I have been running. It was not modified from the initial install of DepthAIv3:
#!/usr/bin/env python3
import cv2import depthai as dai
# Create pipeline
device = dai.Device()
with dai.Pipeline(device) as pipeline:
outputQueues = {}
sockets = device.getConnectedCameras()
for socket in sockets:
cam = pipeline.create(dai.node.Camera).build(socket)
outputQueues[str(socket)] = cam.requestFullResolutionOutput().createOutputQueue()
pipeline.start()
while pipeline.isRunning():
for name in outputQueues.keys():
queue = outputQueues[name]
videoIn = queue.get()
assert isinstance(videoIn, dai.ImgFrame)
# Visualizing the frame on slower hosts might have overhead
cv2.imshow(name, videoIn.getCvFrame())}
if cv2.waitKey(1) == ord("q"):
break
This code was copied directly from examples\python\Camera\camera_all.py via code camera_all.py
I hope this helps in figuring out what is going on with my environment / camera equipment. I was hoping to be using this camera on a robotic arm project of mine. It's inconvenient to test scripts when it has to be reset completely every time. I know now this is not intended behavior, so I am hoping to fix this.
Thank you again for the great help. Any additional information I can provide for this?