| Required Info |
|
| Camera Model |
{ D415 } |
| Firmware Version |
05.12.06.00 |
| Operating System & Version |
Win10 |
| SDK Version |
2.36.0 |
| Language |
{C++ } |
Issue Description
I used 2 USB ports to connect 4 D415 cameras via USB hubs, sometimes this error. USB hubs support external power supplies.
It seems to be working well for two months, and I'm not sure if it's because of what I've changed. may be a win10 system update?
RealSense error calling rs2_load_json(dev:05E01D48, json_content:05E7A680, content_size:1539):
hr returned: HResult 0x80070079: "信号灯超时时间已到"
my code like this:
try
{
if (dev_it->is<rs400::advanced_mode>())
{
auto advanced_mode_dev = dev_it->as<rs400::advanced_mode>();
if (!advanced_mode_dev.is_enabled())
advanced_mode_dev.toggle_advanced_mode(true);
std::ifstream t(config.preset, std::ifstream::in);
std::string preset_json((std::istreambuf_iterator<char>(t)), std::istreambuf_iterator<char>());
advanced_mode_dev.load_json(preset_json);
}
}
catch (const rs2::error& e)
{
LOG(ERROR) << "RealSense error calling " << e.get_failed_function() << "(" << e.get_failed_args() << "):\n " << e.what();
return 0;
}
catch (const std::exception& e)
{
LOG(ERROR) << e.what();
return 0;
}
Issue Description
I used 2 USB ports to connect 4 D415 cameras via USB hubs, sometimes this error. USB hubs support external power supplies.
It seems to be working well for two months, and I'm not sure if it's because of what I've changed. may be a win10 system update?
RealSense error calling rs2_load_json(dev:05E01D48, json_content:05E7A680, content_size:1539):
hr returned: HResult 0x80070079: "信号灯超时时间已到"
my code like this: