Hi im currently trying to get some of the examples running (e.g. rgb_video.cpp), but i get the error:
[169.254.1.222] [213.420] [system] [error] Attempted to start Color camera - NOT detected!
after that i can no longer connect to the camera and have unplug it to get a connection again.
When debugging i get an exception thrown in DataQuee.hpp
exceptionMessage "Communication exception - possible device error/misconfiguration. Original message 'Couldn't read data from stream: 'video' (X_LINK_ERROR)'"
after that i tried to use "bootloader_config read" but get an Error:
#4 Source "[...]\examples\bootloader\bootloader_config.cpp", line 43, in main [00007FF6EA54EB85]
40: dai::DeviceBootloader bl(info);
41:
42: if(read) {
> 43: std::cout << "Current flashed configuration\n" << bl.readConfigData().dump(4) << std::endl;
44: } else {
45: bool success;
46: std::string error;
#3 Source "[...]\src\device\DeviceBootloader.cpp", line 685, in dai::DeviceBootloader::readConfigData [00007FF6EA5696A8]
682: // leaves as default values, which correspond to AUTO
683: }
684:
> 685: if(!sendRequest(getConfigReq)) return {false, "Couldn't send request to get configuration data"};
686:
687: // Get response
688: Response::GetBootloaderConfig resp;
#2 Source "[...]\src\device\DeviceBootloader.cpp", line 848, in dai::DeviceBootloader::sendRequest<dai::bootloader::request::GetBootloaderConfig> [00007FF6EA5A5900]
846: // Do a version check beforehand
847: if(getVersion() < Version(T::VERSION)) {
> 848: throw std::runtime_error(
849: fmt::format("Bootloader version {} required to send request '{}'. Current version {}", T::VERSION, T::NAME, getVersion().toString()));
850: }
#1 Object "", at 00007FFB5C96B460, in CxxThrowException
#0 Object "", at 00007FFB7097466C, in RaiseException
i have also tried the python example, but im running into the same problems. (rgb camera not working appears to result in a crash from the camera)
note that im running it under windows 11.