52 throw std::runtime_error(
"Could not start USB session.");
66 libusb_device_descriptor fadecandy_device_descriptor =
findUsbDevice();
72 throw std::runtime_error(
"Could not open device.");
81 throw std::runtime_error(
"Could not detach kernel driver.");
90 throw std::runtime_error(
"Could not claim device interface.");
95 std::string serial_number =
reinterpret_cast<char*
>(serial);
99 const int timeout = 10000;
103 for (
auto& packet : packets)
109 throw std::runtime_error(
"Failed to write data on device.");
113 return serial_number;
125 throw std::runtime_error(
"Not connected");
129 for (
auto& usb_packet : usb_packets)
132 const int timeout = 10000;
138 throw std::runtime_error(
"Could not write on the driver.");
145 libusb_device** device_list =
nullptr;
146 libusb_device_descriptor fadecandy_device_descriptor;
148 unsigned count = libusb_get_device_list(
context_, &device_list);
149 for (
size_t idx = 0; idx < count; ++idx)
151 libusb_device* device = device_list[idx];
152 libusb_device_descriptor desc;
154 int r = libusb_get_device_descriptor(device, &desc);
157 libusb_free_device_list(device_list, count);
158 throw std::runtime_error(
"Could not get device descriptor.");
162 fadecandy_device_descriptor = desc;
165 libusb_free_device_list(device_list, count);
166 return fadecandy_device_descriptor;
177 throw std::runtime_error(
"Could not release device; the device might be disconnected.");