USB Host Library for Sprint Dongles

Fork of USBHostWANDongleSprint_bleedingedge by Donatien Garnier

Legacy Warning

This is an mbed 2 libary. To learn more about mbed OS 5, visit the docs.

Committer:
donatien
Date:
Wed Oct 03 14:08:39 2012 +0000
Revision:
4:cd9864d1db52
Parent:
3:9ec92dd8a8cb
Child:
8:65cd51339647
Switched to using one virtual serial port

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:bfed5767d0a5 1 /* Copyright (c) 2010-2012 mbed.org, MIT License
donatien 0:bfed5767d0a5 2 *
donatien 0:bfed5767d0a5 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
donatien 0:bfed5767d0a5 4 * and associated documentation files (the "Software"), to deal in the Software without
donatien 0:bfed5767d0a5 5 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
donatien 0:bfed5767d0a5 6 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
donatien 0:bfed5767d0a5 7 * Software is furnished to do so, subject to the following conditions:
donatien 0:bfed5767d0a5 8 *
donatien 0:bfed5767d0a5 9 * The above copyright notice and this permission notice shall be included in all copies or
donatien 0:bfed5767d0a5 10 * substantial portions of the Software.
donatien 0:bfed5767d0a5 11 *
donatien 0:bfed5767d0a5 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
donatien 0:bfed5767d0a5 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
donatien 0:bfed5767d0a5 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
donatien 0:bfed5767d0a5 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
donatien 0:bfed5767d0a5 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
donatien 0:bfed5767d0a5 17 */
donatien 0:bfed5767d0a5 18
donatien 0:bfed5767d0a5 19 #ifndef WANDONGLEINITIALIZER_H
donatien 0:bfed5767d0a5 20 #define WANDONGLEINITIALIZER_H
donatien 0:bfed5767d0a5 21
donatien 0:bfed5767d0a5 22 #include <cstdint>
donatien 0:bfed5767d0a5 23 using std::uint16_t;
donatien 0:bfed5767d0a5 24 using std::uint32_t;
donatien 0:bfed5767d0a5 25
donatien 0:bfed5767d0a5 26 #include "USBHost.h"
donatien 0:bfed5767d0a5 27 #include "IUSBEnumerator.h"
donatien 0:bfed5767d0a5 28
donatien 0:bfed5767d0a5 29 enum WAN_DONGLE_TYPE
donatien 0:bfed5767d0a5 30 {
donatien 0:bfed5767d0a5 31 WAN_DONGLE_TYPE_UNKNOWN = -1,
donatien 0:bfed5767d0a5 32 WAN_DONGLE_TYPE_SPRINT598U = 10,
donatien 0:bfed5767d0a5 33 };
donatien 0:bfed5767d0a5 34
donatien 0:bfed5767d0a5 35 class WANDongleInitializer : public IUSBEnumerator
donatien 0:bfed5767d0a5 36 {
donatien 0:bfed5767d0a5 37 protected:
donatien 0:bfed5767d0a5 38 WANDongleInitializer(USBHost* pHost);
donatien 0:bfed5767d0a5 39 USBHost* m_pHost;
donatien 0:bfed5767d0a5 40
donatien 0:bfed5767d0a5 41 public:
donatien 0:bfed5767d0a5 42 virtual uint16_t getMSDVid() = 0;
donatien 0:bfed5767d0a5 43 virtual uint16_t getMSDPid() = 0;
donatien 0:bfed5767d0a5 44
donatien 0:bfed5767d0a5 45 virtual uint16_t getSerialVid() = 0;
donatien 0:bfed5767d0a5 46 virtual uint16_t getSerialPid() = 0;
donatien 0:bfed5767d0a5 47
donatien 0:bfed5767d0a5 48 virtual bool switchMode(USBDeviceConnected* pDev) = 0;
donatien 0:bfed5767d0a5 49
donatien 0:bfed5767d0a5 50 virtual USBEndpoint* getEp(USBDeviceConnected* pDev, int serialPortNumber, bool tx) = 0;
donatien 0:bfed5767d0a5 51
donatien 0:bfed5767d0a5 52 virtual int getSerialPortCount() = 0;
donatien 0:bfed5767d0a5 53
donatien 0:bfed5767d0a5 54 virtual void setVidPid(uint16_t vid, uint16_t pid) = 0;
donatien 0:bfed5767d0a5 55
donatien 0:bfed5767d0a5 56 virtual bool parseInterface(uint8_t intf_nb, uint8_t intf_class, uint8_t intf_subclass, uint8_t intf_protocol) = 0; //Must return true if the interface should be parsed
donatien 0:bfed5767d0a5 57
donatien 0:bfed5767d0a5 58 virtual bool useEndpoint(uint8_t intf_nb, ENDPOINT_TYPE type, ENDPOINT_DIRECTION dir) = 0; //Must return true if the endpoint will be used
donatien 0:bfed5767d0a5 59
donatien 0:bfed5767d0a5 60 virtual WAN_DONGLE_TYPE getType() = 0;
donatien 0:bfed5767d0a5 61
donatien 0:bfed5767d0a5 62 static WANDongleInitializer** getInitializers(USBHost* pHost);
donatien 0:bfed5767d0a5 63 };
donatien 0:bfed5767d0a5 64
donatien 0:bfed5767d0a5 65 class Sprint598UInitializer : public WANDongleInitializer
donatien 0:bfed5767d0a5 66 {
donatien 0:bfed5767d0a5 67 public:
donatien 0:bfed5767d0a5 68 Sprint598UInitializer(USBHost* pHost);
donatien 0:bfed5767d0a5 69
donatien 0:bfed5767d0a5 70 virtual uint16_t getMSDVid();
donatien 0:bfed5767d0a5 71 virtual uint16_t getMSDPid();
donatien 0:bfed5767d0a5 72
donatien 0:bfed5767d0a5 73 virtual uint16_t getSerialVid();
donatien 0:bfed5767d0a5 74 virtual uint16_t getSerialPid();
donatien 0:bfed5767d0a5 75
donatien 0:bfed5767d0a5 76 virtual bool switchMode(USBDeviceConnected* pDev);
donatien 0:bfed5767d0a5 77
donatien 1:3bcca949166d 78 virtual USBEndpoint* getEp(USBDeviceConnected* pDev, int serialPortNumber, bool tx);
donatien 0:bfed5767d0a5 79
donatien 0:bfed5767d0a5 80 virtual int getSerialPortCount();
donatien 0:bfed5767d0a5 81
donatien 1:3bcca949166d 82 virtual void setVidPid(uint16_t vid, uint16_t pid);
donatien 1:3bcca949166d 83
donatien 0:bfed5767d0a5 84 virtual bool parseInterface(uint8_t intf_nb, uint8_t intf_class, uint8_t intf_subclass, uint8_t intf_protocol); //Must return true if the interface should be parsed
donatien 0:bfed5767d0a5 85
donatien 0:bfed5767d0a5 86 virtual bool useEndpoint(uint8_t intf_nb, ENDPOINT_TYPE type, ENDPOINT_DIRECTION dir); //Must return true if the endpoint will be used
donatien 0:bfed5767d0a5 87
donatien 0:bfed5767d0a5 88 virtual WAN_DONGLE_TYPE getType();
donatien 0:bfed5767d0a5 89
donatien 0:bfed5767d0a5 90 private:
donatien 0:bfed5767d0a5 91
donatien 0:bfed5767d0a5 92 bool m_hasSwitched;
donatien 0:bfed5767d0a5 93 int m_currentSerialIntf;
donatien 4:cd9864d1db52 94 int m_currentEndpoint;
donatien 0:bfed5767d0a5 95 };
donatien 0:bfed5767d0a5 96
donatien 0:bfed5767d0a5 97 #endif