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.
Fork of USBHostWANDongle by
Diff: USB3GModule/WANDongleInitializer.h
- Revision:
- 3:4394986752db
- Parent:
- 2:a8b2d0cd9bbd
- Child:
- 6:075e36a3463e
--- a/USB3GModule/WANDongleInitializer.h Tue Jun 26 13:43:54 2012 +0000 +++ b/USB3GModule/WANDongleInitializer.h Fri Jul 06 08:53:17 2012 +0000 @@ -44,13 +44,13 @@ virtual int getSerialPortCount() = 0; - static WANDongleInitializer[] getInitializers(); + static WANDongleInitializer** getInitializers(USBHost* pHost); }; class VodafoneK3770Initializer : public WANDongleInitializer { public: - VodafoneK3770Initializer(); + VodafoneK3770Initializer(USBHost* pHost); virtual uint16_t getMSDVid(); virtual uint16_t getMSDPid(); @@ -62,7 +62,7 @@ virtual Endpoint* getEp(USBDeviceConnected* pDev, int serialPortNumber, bool tx); - virtual int getSerialPortCount() = 0; + virtual int getSerialPortCount(); }; #endif