Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
USBHost3GModule/IUSBHostSerialListener.h@7:264794e7fed1, 2019-05-10 (annotated)
- Committer:
- kazbo
- Date:
- Fri May 10 11:23:49 2019 +0000
- Revision:
- 7:264794e7fed1
- Parent:
- 1:ab240722d7ef
mbed USBHostMIDI improved. function pointer initialization and NULL checking;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 1 | /* IUSBHostSerialListener.h */ |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 2 | /* Copyright (c) 2010-2012 mbed.org, MIT License |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 3 | * |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 4 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 5 | * and associated documentation files (the "Software"), to deal in the Software without |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 6 | * restriction, including without limitation the rights to use, copy, modify, merge, publish, |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 7 | * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 8 | * Software is furnished to do so, subject to the following conditions: |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 9 | * |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 10 | * The above copyright notice and this permission notice shall be included in all copies or |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 11 | * substantial portions of the Software. |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 12 | * |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 13 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 14 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 15 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 16 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 17 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 18 | */ |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 19 | |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 20 | |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 21 | #ifndef IUSBHOSTSERIALLISTENER_H_ |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 22 | #define IUSBHOSTSERIALLISTENER_H_ |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 23 | |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 24 | #include "USBHostConf.h" |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 25 | |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 26 | #ifdef USBHOST_3GMODULE |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 27 | |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 28 | class IUSBHostSerialListener |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 29 | { |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 30 | public: |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 31 | virtual void readable() = 0; //Called when new data is available |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 32 | virtual void writeable() = 0; //Called when new space is available |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 33 | }; |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 34 | |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 35 | #endif /* USBHOST_3GMODULE */ |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 36 | |
| frq08711@LMECWL0871.LME.ST.COM | 1:ab240722d7ef | 37 | #endif /* IUSBHOSTSERIALLISTENER_H_ */ |