USB Host WAN Dongle library

Fork of USBHostWANDongle_bleedingedge by Donatien Garnier

Committer:
donatien
Date:
Fri Jul 06 08:53:17 2012 +0000
Revision:
3:4394986752db
Parent:
2:a8b2d0cd9bbd
Child:
6:075e36a3463e
Increased limits for number of supported USB endpoints/interfaces

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:ae46a0638b2c 1 /* Copyright (c) 2010-2011 mbed.org, MIT License
donatien 0:ae46a0638b2c 2 *
donatien 0:ae46a0638b2c 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
donatien 0:ae46a0638b2c 4 * and associated documentation files (the "Software"), to deal in the Software without
donatien 0:ae46a0638b2c 5 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
donatien 0:ae46a0638b2c 6 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
donatien 0:ae46a0638b2c 7 * Software is furnished to do so, subject to the following conditions:
donatien 0:ae46a0638b2c 8 *
donatien 0:ae46a0638b2c 9 * The above copyright notice and this permission notice shall be included in all copies or
donatien 0:ae46a0638b2c 10 * substantial portions of the Software.
donatien 0:ae46a0638b2c 11 *
donatien 0:ae46a0638b2c 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
donatien 0:ae46a0638b2c 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
donatien 0:ae46a0638b2c 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
donatien 0:ae46a0638b2c 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
donatien 0:ae46a0638b2c 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
donatien 0:ae46a0638b2c 17 */
donatien 0:ae46a0638b2c 18
donatien 0:ae46a0638b2c 19 #ifndef WANDONGLE_H
donatien 0:ae46a0638b2c 20 #define WANDONGLE_H
donatien 0:ae46a0638b2c 21
donatien 0:ae46a0638b2c 22 #include "USBHost.h"
donatien 0:ae46a0638b2c 23 #include "IUSBHostSerial.h"
donatien 0:ae46a0638b2c 24
donatien 0:ae46a0638b2c 25 #include "rtos.h"
donatien 0:ae46a0638b2c 26
donatien 3:4394986752db 27 #include "WANDongleSerialPort.h"
donatien 0:ae46a0638b2c 28
donatien 0:ae46a0638b2c 29 #define WANDONGLE_MAX_OUTEP_SIZE 64
donatien 0:ae46a0638b2c 30 #define WANDONGLE_MAX_INEP_SIZE 64
donatien 0:ae46a0638b2c 31
donatien 2:a8b2d0cd9bbd 32 #define WANDONGLE_MAX_SERIAL_PORTS 2
donatien 2:a8b2d0cd9bbd 33
donatien 0:ae46a0638b2c 34 /** A class to use a WAN (3G/LTE) access dongle
donatien 0:ae46a0638b2c 35 *
donatien 0:ae46a0638b2c 36 */
donatien 2:a8b2d0cd9bbd 37 class WANDongle {
donatien 0:ae46a0638b2c 38 public:
donatien 0:ae46a0638b2c 39 /*
donatien 0:ae46a0638b2c 40 * Constructor
donatien 0:ae46a0638b2c 41 *
donatien 0:ae46a0638b2c 42 * @param rootdir mount name
donatien 0:ae46a0638b2c 43 */
donatien 0:ae46a0638b2c 44 WANDongle();
donatien 0:ae46a0638b2c 45
donatien 0:ae46a0638b2c 46 /*
donatien 0:ae46a0638b2c 47 * Check if a serial port device is connected
donatien 0:ae46a0638b2c 48 *
donatien 0:ae46a0638b2c 49 * @return true if a serial device is connected
donatien 0:ae46a0638b2c 50 */
donatien 0:ae46a0638b2c 51 bool connected();
donatien 0:ae46a0638b2c 52
donatien 0:ae46a0638b2c 53 /*
donatien 0:ae46a0638b2c 54 * Try to connect device
donatien 0:ae46a0638b2c 55 *
donatien 0:ae46a0638b2c 56 * * @return true if connection was successful
donatien 0:ae46a0638b2c 57 */
donatien 0:ae46a0638b2c 58 bool tryConnect();
donatien 0:ae46a0638b2c 59
donatien 3:4394986752db 60 IUSBHostSerial& getSerial(int index);
donatien 2:a8b2d0cd9bbd 61 int getSerialCount();
donatien 0:ae46a0638b2c 62
donatien 0:ae46a0638b2c 63 protected:
donatien 0:ae46a0638b2c 64 USBHost * host;
donatien 0:ae46a0638b2c 65 USBDeviceConnected * dev;
donatien 0:ae46a0638b2c 66 bool dev_connected;
donatien 0:ae46a0638b2c 67
donatien 2:a8b2d0cd9bbd 68 void init();
donatien 0:ae46a0638b2c 69
donatien 2:a8b2d0cd9bbd 70 WANDongleSerialPort m_serial[WANDONGLE_MAX_SERIAL_PORTS];
donatien 2:a8b2d0cd9bbd 71 int m_serialCount;
donatien 0:ae46a0638b2c 72 };
donatien 0:ae46a0638b2c 73
donatien 0:ae46a0638b2c 74 #endif