MODSERIAL with support for more devices. Added support for LPC4330

Dependents:   HC05_AT_mode GPS_U-blox_NEO-6M_Test_Code GPS_U-blox_NEO-6M_Code UbloxGPSWithThread ... more

Fork of MODSERIAL by Erik -

Revision:
18:21ef26402365
Parent:
14:3c3b87617bfe
Child:
22:c11ea36f17f9
--- a/PUTC.cpp	Tue Mar 08 01:42:25 2011 +0000
+++ b/PUTC.cpp	Thu Apr 21 09:20:41 2011 +0000
@@ -60,7 +60,7 @@
         }
         else if( MODSERIAL_TX_BUFFER_FULL ) {
             buffer_overflow[TxIrq] = c; // Oh dear, no room in buffer.
-            _isr[TxOvIrq].call();
+            _isr[TxOvIrq].call(&this->callbackInfo);
             return -1;
         }
         _IER &= ~2;