1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
/*
* Wi-Spy 24x interface, for second-gen Wi-Spy hardware
*
* 255 samples, variable resolution
*
* Device configured via HID feature SET
* Device read via blocking USB endpoint iread
*
* Wi-Spy (tm) metageek LLC
*
* This code 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 code 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.
*
* Extra thanks to Ryan Woodings @ Metageek for interface documentation
*/
#ifndef __WISPY_HW_24X_H__
#define __WISPY_HW_24X_H__
#include "spectool_container.h"
/* Wispy1 device scan results */
typedef struct _wispy24x_usb_pair {
char bus[64];
char dev[64];
} wispy24x_usb_pair;
int wispy24x_usb_detach_hack(struct usb_dev_handle *dev, int interface, char *errstr);
uint32_t wispy24x_adler_checksum(const char *buf1, int len);
int wispy24x_usb_device_scan(spectool_device_list *list);
/* Wispy24x init function to build a phydev linked to a bus and device path
* scanned */
int wispy24x_usb_init_path(spectool_phy *phydev, char *buspath, char *devpath);
int wispy24x_usb_init(spectool_phy *phydev, spectool_device_rec *rec);
#endif
|