USB Host Library for Sprint Dongles

Dependencies:   Socket USBHostWANDongleSprint lwip-sys lwip

Dependents:   SprintUSBModemWebsocketTest SprintUSBModemHTTPClientTest SprintUSBModemNTPClientTest SprintUSBModemSMSTest ... more

Fork of SprintUSBModem_bleedingedge by Donatien Garnier

Files at this revision

API Documentation at this revision

Comitter:
donatien
Date:
Mon Dec 10 18:23:49 2012 +0000
Parent:
13:75171617d543
Commit message:
Separate USB/Sprint dev flows, fix regression in mbed rev. 41+ lib

Changed in this revision

USBHostWANDongleSprint.lib Show annotated file Show diff for this revision Revisions of this file
USBHostWANDongleSprint_bleedingedge.lib Show diff for this revision Revisions of this file
serial/io/IOSerialStream.cpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/USBHostWANDongleSprint.lib	Mon Dec 10 18:23:49 2012 +0000
@@ -0,0 +1,1 @@
+https://mbed.org/users/mbed_official/code/USBHostWANDongleSprint/#2a7b7333245f
--- a/USBHostWANDongleSprint_bleedingedge.lib	Fri Nov 30 13:13:58 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://mbed.org/users/donatien/code/USBHostWANDongleSprint_bleedingedge/#65cd51339647
--- a/serial/io/IOSerialStream.cpp	Fri Nov 30 13:13:58 2012 +0000
+++ b/serial/io/IOSerialStream.cpp	Mon Dec 10 18:23:49 2012 +0000
@@ -34,14 +34,14 @@
   m_availableSphre.wait();
   m_spaceSphre.wait();
   //Attach interrupts
-  m_serial.attach(this, &IOSerialStream::readable, RxIrq);
-  m_serial.attach(this, &IOSerialStream::writeable, TxIrq);
+  m_serial.attach(this, &IOSerialStream::readable, mbed::Serial::RxIrq);
+  m_serial.attach(this, &IOSerialStream::writeable, mbed::Serial::TxIrq);
 }
 
 /*virtual*/ IOSerialStream::~IOSerialStream()
 {
-  m_serial.attach(NULL, RxIrq);
-  m_serial.attach(NULL, TxIrq);
+  m_serial.attach(NULL, mbed::Serial::RxIrq);
+  m_serial.attach(NULL, mbed::Serial::TxIrq);
 }
 
 //0 for non-blocking (returns immediately), osWaitForever for infinite blocking