Hi all,
I am working on this project and it works fine.
The problem is that I want to make it work in standalone mode.
I removed this block:
with dai.Device(pipeline) as device:
print('Connected to OAK')
while not device.isClosed():
time.sleep(1)
and I added this block :
(f, bl) = dai.DeviceBootloader.getFirstAvailableDevice()
bootloader = dai.DeviceBootloader(bl)
progress = lambda p : print(f'Flashing progress: {p*100:.1f}%')
bootloader.flash(progress, pipeline)
But when I start the tests after bootloading. No message arrives from the camera. No errors displayed but I am not able to see receive the messages. What could be the issue ?
Thanks