You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bool res = searchForConnectedDev(&found_sn, &pid);
678
+
if(!res)
655
679
{
656
680
std::string msg;
657
681
if(serial_number!=0)
658
682
{
659
-
msg = "Unable to find the Sensor Module with serial number ";
683
+
msg = "[sl_oc::sensors::SensorCapture] WARNING: Sensors Module reset failed. Unable to find the Sensor Module with serial number ";
660
684
msg += std::to_string(serial_number);
661
685
}
662
686
else
663
687
{
664
-
msg = "Unable to find the Sensor Module of a ZED2 camera. Please verify the USB connection.";
688
+
msg = "[sl_oc::sensors::SensorCapture] WARNING: Sensors Module reset failed. Unable to find the Sensor Module of a ZED2 camera. Please verify the USB connection.";
bool res = searchForConnectedDev(&found_sn, &pid);
730
+
if(!res)
731
+
{
732
+
std::string msg;
733
+
if(serial_number!=0)
734
+
{
735
+
msg = "[sl_oc::sensors::SensorCapture] WARNING: Video Module reset failed. Unable to find the Sensor Module with serial number ";
736
+
msg += std::to_string(serial_number);
737
+
}
738
+
else
739
+
{
740
+
msg = "[sl_oc::sensors::SensorCapture] WARNING: Video Module reset failed. Unable to find the Sensor Module of a ZED2 camera. Please verify the USB connection.";
0 commit comments