MODSERIAL with support for KL25Z + RTOS (beta, putc + puts currently)

Dependents:   kl25z_USB_4

Fork of MODSERIAL by Erik -

Files at this revision

API Documentation at this revision

Comitter:
AjK
Date:
Wed Nov 24 00:23:55 2010 +0000
Parent:
9:b3cdae80e7a9
Child:
11:a93a62eeeb9d
Commit message:
1.10

Changed in this revision

ChangeLog.c Show annotated file Show diff for this revision Revisions of this file
MODSERIAL.h Show annotated file Show diff for this revision Revisions of this file
--- a/ChangeLog.c	Tue Nov 23 21:34:54 2010 +0000
+++ b/ChangeLog.c	Wed Nov 24 00:23:55 2010 +0000
@@ -1,5 +1,9 @@
 /* $Id:$
 
+1.10 - 23/11/2010
+
+    * Reanme the DMA callback from attach_dma_complete() to attach_dmaSendComplete()
+    
 1.9 - 23/11/2010
 
     * Added support for DMA sending of characters. Required is
--- a/MODSERIAL.h	Tue Nov 23 21:34:54 2010 +0000
+++ b/MODSERIAL.h	Wed Nov 24 00:23:55 2010 +0000
@@ -829,8 +829,8 @@
      * @param fptr A function pointer to call
      * @return this
      */
-    void attach_dma_complete(void (*fptr)(void)) {  
-        _isrDmaComplete.attach(fptr);         
+    void attach_dmaSendComplete(void (*fptr)(void)) {  
+        _isrDmaSendComplete.attach(fptr);         
     }
     
     /**
@@ -842,13 +842,13 @@
      * @return this
      */
     template<typename T>
-    void attach_dma_complete(T* tptr, void (T::*mptr)(void)) {  
+    void attach_dmaSendComplete(T* tptr, void (T::*mptr)(void)) {  
         if((mptr != NULL) && (tptr != NULL)) {
-            _isrDmaComplete.attach(tptr, mptr);         
+            _isrDmaSendComplete.attach(tptr, mptr);         
         }
     }
     
-    FunctionPointer _isrDmaComplete;
+    FunctionPointer _isrDmaSendComplete;
     
 protected:    
     /**