USB Host WAN Dongle library

Fork of USBHostWANDongle_bleedingedge by Donatien Garnier

Committer:
donatien
Date:
Tue Jun 26 13:43:54 2012 +0000
Revision:
2:a8b2d0cd9bbd
Parent:
0:ae46a0638b2c
Child:
3:4394986752db
Test with multiple 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 0:ae46a0638b2c 27
donatien 0:ae46a0638b2c 28 #define WANDONGLE_MAX_OUTEP_SIZE 64
donatien 0:ae46a0638b2c 29 #define WANDONGLE_MAX_INEP_SIZE 64
donatien 0:ae46a0638b2c 30
donatien 2:a8b2d0cd9bbd 31 #define WANDONGLE_MAX_SERIAL_PORTS 2
donatien 2:a8b2d0cd9bbd 32
donatien 0:ae46a0638b2c 33 /** A class to use a WAN (3G/LTE) access dongle
donatien 0:ae46a0638b2c 34 *
donatien 0:ae46a0638b2c 35 */
donatien 2:a8b2d0cd9bbd 36 class WANDongle {
donatien 0:ae46a0638b2c 37 public:
donatien 0:ae46a0638b2c 38 /*
donatien 0:ae46a0638b2c 39 * Constructor
donatien 0:ae46a0638b2c 40 *
donatien 0:ae46a0638b2c 41 * @param rootdir mount name
donatien 0:ae46a0638b2c 42 */
donatien 0:ae46a0638b2c 43 WANDongle();
donatien 0:ae46a0638b2c 44
donatien 0:ae46a0638b2c 45 /*
donatien 0:ae46a0638b2c 46 * Check if a serial port device is connected
donatien 0:ae46a0638b2c 47 *
donatien 0:ae46a0638b2c 48 * @return true if a serial device is connected
donatien 0:ae46a0638b2c 49 */
donatien 0:ae46a0638b2c 50 bool connected();
donatien 0:ae46a0638b2c 51
donatien 0:ae46a0638b2c 52 /*
donatien 0:ae46a0638b2c 53 * Try to connect device
donatien 0:ae46a0638b2c 54 *
donatien 0:ae46a0638b2c 55 * * @return true if connection was successful
donatien 0:ae46a0638b2c 56 */
donatien 0:ae46a0638b2c 57 bool tryConnect();
donatien 0:ae46a0638b2c 58
donatien 2:a8b2d0cd9bbd 59 IUSBHostSerial* getSerial(int index);
donatien 2:a8b2d0cd9bbd 60 int getSerialCount();
donatien 0:ae46a0638b2c 61
donatien 0:ae46a0638b2c 62 protected:
donatien 0:ae46a0638b2c 63 USBHost * host;
donatien 0:ae46a0638b2c 64 USBDeviceConnected * dev;
donatien 0:ae46a0638b2c 65 bool dev_connected;
donatien 0:ae46a0638b2c 66
donatien 2:a8b2d0cd9bbd 67 void init();
donatien 0:ae46a0638b2c 68
donatien 2:a8b2d0cd9bbd 69 WANDongleSerialPort m_serial[WANDONGLE_MAX_SERIAL_PORTS];
donatien 2:a8b2d0cd9bbd 70 int m_serialCount;
donatien 0:ae46a0638b2c 71 };
donatien 0:ae46a0638b2c 72
donatien 0:ae46a0638b2c 73 #endif