Fork of MODSERIAL that works with LPC4088

Fork of MODSERIAL by Andy K

Files at this revision

API Documentation at this revision

Comitter:
mdigman
Date:
Thu Oct 30 22:57:03 2014 +0000
Parent:
25:ae0408ebdd68
Commit message:
Added UART4 in init function in order to support the LPC4088

Changed in this revision

INIT.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/INIT.cpp	Tue Jan 08 18:01:03 2013 +0000
+++ b/INIT.cpp	Thu Oct 30 22:57:03 2014 +0000
@@ -43,6 +43,7 @@
         case 1: _base = LPC_UART1; break;
         case 2: _base = LPC_UART2; break;
         case 3: _base = LPC_UART3; break;
+        case 4: _base = LPC_UART4; break;
         default: _base = NULL;      break;
     }
 #endif