TL866/TL866_Updater/usb_linux.cpp
2014-03-16 18:27:47 +02:00

111 lines
2.7 KiB
C++

/* Class USB, Linux version
*
* This file is part of the TL866 updater project.
*
* Copyright (C) radioman 2013
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*/
#include "usb_linux.h"
#include "tl866_global.h"
#include <QDebug>
USB::USB()
{
device_handle = NULL;
libusb_init(&ctx);//initialize a new session
libusb_set_debug(ctx, 3);//set verbosity level
}
USB::~USB()
{
if(isOpen())
close_device();
libusb_exit(ctx); //close session
}
int USB::get_devices_count()
{
libusb_device **devs;
devices.clear();
int count = libusb_get_device_list(ctx, &devs);
if(count < 0) {
return 0;
}
for(int i = 0; i < count; i++) {
libusb_device_descriptor desc;
int ret = libusb_get_device_descriptor(devs[i], &desc);
if (ret < 0) {
return 0;
}
if(desc.idProduct == TL866_PID && desc.idVendor == TL866_VID)
{
devices.append(devs[i]);
}
}
libusb_free_device_list(devs, 1);
return devices.size();
}
bool USB::open_device(int index)
{
if(isOpen())
close_device();
return (libusb_open(devices[index], &device_handle) == 0);
}
bool USB::isOpen()
{
return (device_handle !=NULL);
}
void USB::close_device()
{
libusb_close(device_handle);
device_handle = NULL;
}
size_t USB::usb_read(unsigned char *data, size_t size)
{
int bytes_read;
if(libusb_claim_interface(device_handle, 0) < 0)
return 0;
int ret = libusb_bulk_transfer(device_handle, LIBUSB_ENDPOINT_IN | 1, data, size, &bytes_read, 0);
libusb_release_interface(device_handle, 0);
if(ret !=0)
return 0;
return bytes_read;
}
size_t USB::usb_write(unsigned char *data, size_t size)
{
int bytes_writen;
if(libusb_claim_interface(device_handle, 0) < 0)
return 0;
int ret = libusb_bulk_transfer(device_handle, LIBUSB_ENDPOINT_OUT | 1, data, size, &bytes_writen, 0);
libusb_release_interface(device_handle, 0);
if(ret !=0)
return 0;
return bytes_writen;
}