mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 00:28:42 +00:00
.. different pid of 1009 to the garmin usb2 stick but probably works the same .. lets see!
86 lines
2.2 KiB
C++
86 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2011 Darren Hague & Eric Brandt
|
|
* Modified to suport Linux and OSX by Mark Liversedge
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#ifndef gc_LibUsb_h
|
|
#define gc_LibUsb_h
|
|
|
|
#if defined GC_HAVE_LIBUSB
|
|
|
|
#ifdef WIN32
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#include <usb.h> // for the constants etc
|
|
|
|
// EZ-USB firmware loader for Fortius
|
|
extern "C" {
|
|
#include "EzUsb.h"
|
|
}
|
|
|
|
#ifdef WIN32
|
|
#include <QLibrary> // for dynamically loading libusb0.dll
|
|
#endif
|
|
|
|
#define GARMIN_USB2_VID 0x0fcf
|
|
#define GARMIN_USB2_PID 0x1008
|
|
#define GARMIN_OEM_PID 0x1009
|
|
|
|
#define FORTIUS_VID 0x3561
|
|
#define FORTIUS_INIT_PID 0xe6be // uninitialised Fortius PID
|
|
#define FORTIUS_PID 0x1942 // once firmware loaded Fortius PID
|
|
#define FORTIUSVR_PID 0x1932 // Fortius VR doesn't need firmware download ?
|
|
|
|
#define TYPE_ANT 0
|
|
#define TYPE_FORTIUS 1
|
|
|
|
class MainWindow;
|
|
|
|
class LibUsb {
|
|
|
|
public:
|
|
LibUsb(int type);
|
|
int open();
|
|
void close();
|
|
int read(char *buf, int bytes);
|
|
int write(char *buf, int bytes);
|
|
bool find();
|
|
private:
|
|
|
|
struct usb_dev_handle* OpenAntStick();
|
|
struct usb_dev_handle* OpenFortius();
|
|
bool findAntStick();
|
|
bool findFortius();
|
|
|
|
struct usb_interface_descriptor* usb_find_interface(struct usb_config_descriptor* config_descriptor);
|
|
struct usb_dev_handle* device;
|
|
struct usb_interface_descriptor* intf;
|
|
|
|
int readEndpoint, writeEndpoint;
|
|
int interface;
|
|
int alternate;
|
|
|
|
char readBuf[64];
|
|
int readBufIndex;
|
|
int readBufSize;
|
|
|
|
int type;
|
|
};
|
|
#endif
|
|
#endif // gc_LibUsb_h
|