Fixing issues with library dependencies

Dependencies:   FATFileSystem mbed-rtos

Fork of USBHost by mbed official

Committer:
mbed_official
Date:
Wed Oct 16 14:15:18 2013 +0100
Revision:
17:c7b1b8451598
Synchronized with git revision d8c3822c4c4e995cd7eaff0ce99f2d3284dde9cd

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 17:c7b1b8451598 1 /* IUSBHostSerialListener.h */
mbed_official 17:c7b1b8451598 2 /* Copyright (c) 2010-2012 mbed.org, MIT License
mbed_official 17:c7b1b8451598 3 *
mbed_official 17:c7b1b8451598 4 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
mbed_official 17:c7b1b8451598 5 * and associated documentation files (the "Software"), to deal in the Software without
mbed_official 17:c7b1b8451598 6 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
mbed_official 17:c7b1b8451598 7 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
mbed_official 17:c7b1b8451598 8 * Software is furnished to do so, subject to the following conditions:
mbed_official 17:c7b1b8451598 9 *
mbed_official 17:c7b1b8451598 10 * The above copyright notice and this permission notice shall be included in all copies or
mbed_official 17:c7b1b8451598 11 * substantial portions of the Software.
mbed_official 17:c7b1b8451598 12 *
mbed_official 17:c7b1b8451598 13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
mbed_official 17:c7b1b8451598 14 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
mbed_official 17:c7b1b8451598 15 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
mbed_official 17:c7b1b8451598 16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbed_official 17:c7b1b8451598 17 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
mbed_official 17:c7b1b8451598 18 */
mbed_official 17:c7b1b8451598 19
mbed_official 17:c7b1b8451598 20
mbed_official 17:c7b1b8451598 21 #ifndef IUSBHOSTSERIALLISTENER_H_
mbed_official 17:c7b1b8451598 22 #define IUSBHOSTSERIALLISTENER_H_
mbed_official 17:c7b1b8451598 23
mbed_official 17:c7b1b8451598 24 #include "USBHostConf.h"
mbed_official 17:c7b1b8451598 25
mbed_official 17:c7b1b8451598 26 #ifdef USBHOST_3GMODULE
mbed_official 17:c7b1b8451598 27
mbed_official 17:c7b1b8451598 28 class IUSBHostSerialListener
mbed_official 17:c7b1b8451598 29 {
mbed_official 17:c7b1b8451598 30 public:
mbed_official 17:c7b1b8451598 31 virtual void readable() = 0; //Called when new data is available
mbed_official 17:c7b1b8451598 32 virtual void writeable() = 0; //Called when new space is available
mbed_official 17:c7b1b8451598 33 };
mbed_official 17:c7b1b8451598 34
mbed_official 17:c7b1b8451598 35 #endif /* USBHOST_3GMODULE */
mbed_official 17:c7b1b8451598 36
mbed_official 17:c7b1b8451598 37 #endif /* IUSBHOSTSERIALLISTENER_H_ */