00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #include <sick_tim/sick_tim_common_usb.h>
00040
00041 namespace sick_tim
00042 {
00043
00044 SickTimCommonUsb::SickTimCommonUsb(AbstractParser* parser) : SickTimCommon(parser),
00045 ctx_(NULL), numberOfDevices_(0), devices_(NULL), device_handle_(NULL)
00046 {
00047 }
00048
00049 SickTimCommonUsb::~SickTimCommonUsb()
00050 {
00051 stop_scanner();
00052 close_device();
00053 }
00054
00055 int SickTimCommonUsb::close_device()
00056 {
00057 int result = 0;
00058 if (device_handle_ != NULL)
00059 {
00060
00061
00062
00063 result = libusb_release_interface(device_handle_, 0);
00064 if (result != 0)
00065 printf("LIBUSB - Cannot Release Interface!\n");
00066 else
00067 printf("LIBUSB - Released Interface.\n");
00068
00069
00070
00071
00072 libusb_close(device_handle_);
00073 }
00074
00075
00076
00077
00078 freeSOPASDeviceList(devices_);
00079
00080
00081
00082
00083 libusb_exit(ctx_);
00084 return result;
00085 }
00086
00090 ssize_t SickTimCommonUsb::getSOPASDeviceList(libusb_context *ctx, uint16_t vendorID, uint16_t productID,
00091 libusb_device ***list)
00092 {
00093 libusb_device **resultDevices = NULL;
00094 ssize_t numberOfResultDevices = 0;
00095 libusb_device **devices;
00096
00097
00098
00099
00100 ssize_t numberOfDevices = libusb_get_device_list(ctx, &devices);
00101
00102
00103
00104
00105 for (ssize_t i = 0; i < numberOfDevices; i++)
00106 {
00107 struct libusb_device_descriptor desc;
00108 int result = libusb_get_device_descriptor(devices[i], &desc);
00109 if (result < 0)
00110 {
00111 ROS_ERROR("LIBUSB - Failed to get device descriptor");
00112 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Failed to get device descriptor.");
00113 continue;
00114 }
00115
00116 if (desc.idVendor == vendorID && desc.idProduct == 0x5001)
00117 {
00118
00119
00120
00121 resultDevices = (libusb_device **)realloc(resultDevices, sizeof(libusb_device *) * (numberOfResultDevices + 2));
00122 if (resultDevices == NULL)
00123 {
00124 ROS_ERROR("LIBUSB - Failed to allocate memory for the device result list.");
00125 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Failed to allocate memory for the device result list.");
00126 }
00127 else
00128 {
00129 resultDevices[numberOfResultDevices] = devices[i];
00130 resultDevices[numberOfResultDevices + 1] = NULL;
00131 libusb_ref_device(devices[i]);
00132 numberOfResultDevices++;
00133 }
00134 }
00135 }
00136
00137
00138
00139
00140 libusb_free_device_list(devices, 1);
00141
00142
00143
00144
00145 *list = resultDevices;
00146 return numberOfResultDevices;
00147 }
00148
00149
00150
00151
00152 void SickTimCommonUsb::freeSOPASDeviceList(libusb_device **list)
00153 {
00154 if (!list)
00155 return;
00156
00157 int i = 0;
00158 struct libusb_device *dev;
00159 while ((dev = list[i++]) != NULL)
00160 libusb_unref_device(dev);
00161
00162 free(list);
00163 }
00164
00165
00166
00167
00168 void SickTimCommonUsb::printUSBDeviceDetails(struct libusb_device_descriptor desc)
00169 {
00170 ROS_INFO("Device Class: 0x%x", desc.bDeviceClass);
00171 ROS_INFO("VendorID: 0x%x", desc.idVendor);
00172 ROS_INFO("ProductID: 0x%x", desc.idProduct);
00173 }
00174
00175
00176
00177
00178 void SickTimCommonUsb::printUSBInterfaceDetails(libusb_device* device)
00179 {
00180 struct libusb_config_descriptor *config;
00181
00182
00183
00184
00185 libusb_get_config_descriptor(device, 0, &config);
00186
00187 ROS_INFO("Interfaces: %i", (int)config->bNumInterfaces);
00188 ROS_INFO("----------------------------------------");
00189
00190 const struct libusb_interface *interface;
00191 const struct libusb_interface_descriptor *interface_descriptor;
00192 const struct libusb_endpoint_descriptor *endpoint_descriptor;
00193
00194 int i, j, k;
00195 for (i = 0; i < config->bNumInterfaces; i++)
00196 {
00197 interface = &config->interface[i];
00198 ROS_INFO("Number of alternate settings: %i", interface->num_altsetting);
00199
00200 for (j = 0; j < interface->num_altsetting; j++)
00201 {
00202 interface_descriptor = &interface->altsetting[j];
00203
00204 ROS_INFO("Interface number: %i", (int)interface_descriptor->bInterfaceNumber);
00205 ROS_INFO("Number of endpoints: %i", (int)interface_descriptor->bNumEndpoints);
00206
00207 for (k = 0; k < interface_descriptor->bNumEndpoints; k++)
00208 {
00209 endpoint_descriptor = &interface_descriptor->endpoint[k];
00210 ROS_INFO("Descriptor Type: %i", endpoint_descriptor->bDescriptorType);
00211 ROS_INFO("EP Address: %i", endpoint_descriptor->bEndpointAddress);
00212 }
00213 }
00214
00215 if (i < config->bNumInterfaces - 1)
00216 {
00217 ROS_INFO("----------------------------------------");
00218 }
00219 }
00220
00221
00222
00223
00224 libusb_free_config_descriptor(config);
00225 }
00226
00230 void SickTimCommonUsb::printSOPASDeviceInformation(ssize_t numberOfDevices, libusb_device** devices)
00231 {
00232 ssize_t i;
00233 for (i = 0; i < numberOfDevices; i++)
00234 {
00235 struct libusb_device_descriptor desc;
00236 int result = libusb_get_device_descriptor(devices[i], &desc);
00237 if (result < 0)
00238 {
00239 ROS_ERROR("LIBUSB - Failed to get device descriptor");
00240 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Failed to get device descriptor.");
00241 continue;
00242 }
00243 if (result == 0)
00244 {
00245 ROS_INFO("SICK AG - TIM3XX - [%zu]", (i + 1));
00246 ROS_INFO("----------------------------------------");
00247 printUSBDeviceDetails(desc);
00248 ROS_INFO("----------------------------------------");
00249 printUSBInterfaceDetails(devices[i]);
00250 ROS_INFO("----------------------------------------");
00251 }
00252 }
00253
00254 if (numberOfDevices == 0)
00255 {
00256 ROS_INFO("LIBUSB - No SICK TIM device connected.");
00257 }
00258 }
00259
00263 int SickTimCommonUsb::sendSOPASCommand(const char* request, std::vector<unsigned char> * reply)
00264 {
00265 if (device_handle_ == NULL) {
00266 ROS_ERROR("LIBUSB - device not open");
00267 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - device not open.");
00268 return EXIT_FAILURE;
00269 }
00270
00271 int result = 0;
00272 unsigned char receiveBuffer[65536];
00273
00274
00275
00276
00277 ROS_DEBUG("LIBUSB - Write data... %s", request);
00278
00279 int actual_length = 0;
00280 int requestLength = strlen(request);
00281 result = libusb_bulk_transfer(device_handle_, (2 | LIBUSB_ENDPOINT_OUT), (unsigned char*)request, requestLength,
00282 &actual_length, 0);
00283 if (result != 0 || actual_length != requestLength)
00284 {
00285 ROS_ERROR("LIBUSB - Write Error: %i.", result);
00286 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Write Error.");
00287 return result;
00288 }
00289
00290
00291
00292
00293 result = libusb_bulk_transfer(device_handle_, (1 | LIBUSB_ENDPOINT_IN), receiveBuffer, 65535, &actual_length, USB_TIMEOUT);
00294 if (result != 0)
00295 {
00296 ROS_ERROR("LIBUSB - Read Error: %i.", result);
00297 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Read Error.");
00298 return result;
00299 }
00300
00301 receiveBuffer[actual_length] = 0;
00302 ROS_DEBUG("LIBUSB - Read data... %s", receiveBuffer);
00303 if(reply) {
00304 reply->clear();
00305 for(int i = 0; i < actual_length; i++) {
00306 reply->push_back(receiveBuffer[i]);
00307 }
00308 }
00309
00310 return result;
00311 }
00312
00313
00314
00315
00316 int SickTimCommonUsb::init_device()
00317 {
00318
00319
00320
00321 int result = libusb_init(&ctx_);
00322 if (result != 0)
00323 {
00324 ROS_ERROR("LIBUSB - Initialization failed with the following error code: %i.", result);
00325 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Initialization failed.");
00326 return EXIT_FAILURE;
00327 }
00328
00329
00330
00331
00332 libusb_set_debug(ctx_, 3);
00333
00334
00335
00336
00337
00338
00339
00340 int vendorID = 0x19A2;
00341 int deviceID = 0x5001;
00342 numberOfDevices_ = getSOPASDeviceList(ctx_, vendorID, deviceID, &devices_);
00343
00344
00345
00346
00347 if (numberOfDevices_ == 0)
00348 {
00349 ROS_ERROR("No SICK TiM devices connected!");
00350 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "No SICK TiM devices connected!");
00351 return EXIT_FAILURE;
00352 }
00353 else if (numberOfDevices_ > 1)
00354 {
00355 ROS_WARN("%zu TiM3xx scanners connected, using the first one", numberOfDevices_);
00356 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::WARN, "Multiple TiMxxx scanners connected, using the first one.");
00357 }
00358
00359
00360
00361
00362 printSOPASDeviceInformation(numberOfDevices_, devices_);
00363
00364
00365
00366
00367 libusb_open(devices_[0], &device_handle_);
00368 if (device_handle_ == NULL)
00369 {
00370 ROS_ERROR("LIBUSB - Cannot open device; please read sick_tim/udev/README");
00371 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Cannot open device; please read sick_tim/udev/README.");
00372 return EXIT_FAILURE;
00373 }
00374 else
00375 {
00376 ROS_DEBUG("LIBUSB - Device opened");
00377 }
00378
00379 if (libusb_kernel_driver_active(device_handle_, 0) == 1)
00380 {
00381 ROS_DEBUG("LIBUSB - Kernel driver active");
00382 if (libusb_detach_kernel_driver(device_handle_, 0) == 0)
00383 {
00384 ROS_DEBUG("LIBUSB - Kernel driver detached!");
00385 }
00386 }
00387
00388
00389
00390
00391 result = libusb_claim_interface(device_handle_, 0);
00392 if (result < 0)
00393 {
00394 ROS_ERROR("LIBUSB - Cannot claim interface");
00395 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Cannot claim interface.");
00396 return EXIT_FAILURE;
00397 }
00398 else
00399 {
00400 ROS_INFO("LIBUSB - Claimed interface");
00401 }
00402
00403 return EXIT_SUCCESS;
00404 }
00405
00406 int SickTimCommonUsb::get_datagram(unsigned char* receiveBuffer, int bufferSize, int* actual_length)
00407 {
00408 int result = libusb_bulk_transfer(device_handle_, (1 | LIBUSB_ENDPOINT_IN), receiveBuffer, bufferSize - 1, actual_length,
00409 USB_TIMEOUT);
00410 if (result != 0)
00411 {
00412 if (result == LIBUSB_ERROR_TIMEOUT)
00413 {
00414 ROS_WARN("LIBUSB - Read Error: LIBUSB_ERROR_TIMEOUT.");
00415 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Read Error: LIBUSB_ERROR_TIMEOUT.");
00416 *actual_length = 0;
00417 return EXIT_SUCCESS;
00418 }
00419 else
00420 {
00421 ROS_ERROR("LIBUSB - Read Error: %i.", result);
00422 diagnostics_.broadcast(diagnostic_msgs::DiagnosticStatus::ERROR, "LIBUSB - Read Error.");
00423 return result;
00424 }
00425 }
00426
00427 receiveBuffer[*actual_length] = 0;
00428 return EXIT_SUCCESS;
00429 }
00430
00431 }