Thi s library works either for lpc1768 or lpc4088 QSB

Fork of I2SSlave by Suga koubou

Revision:
3:5a09a8df83b1
Parent:
2:f25201f154d0
Child:
4:aa3e863920d2
--- a/I2SSlave.h	Thu Aug 04 14:58:11 2011 +0000
+++ b/I2SSlave.h	Thu Aug 04 14:59:40 2011 +0000
@@ -86,8 +86,8 @@
          *
          * @param function Function to attach
          *
-         * <<code>> myI2sObject.attach(&myfunction); <</code>>
-         * OR <<code>> myI2sObject.attach(&myClass::myStaticMemberFunction); <</code>>
+         * <code> myI2sObject.attach(&myfunction); </code>
+         * OR <code> myI2sObject.attach(&myClass::myStaticMemberFunction); </code>
          */
         void attach(void(*fptr)(void)){
             akjnh3489v8ncv.attach(fptr);
@@ -97,7 +97,7 @@
          * @param tptr Object pointer
          * @param mptr Member function pointer
          *
-         * e.g. myI2sObject.attach(&myObject, &myClass::myNonstaticMemberFunction); where myObject is an object of myClass
+         * e.g. <code>myI2sObject.attach(&myObject, &myClass::myNonstaticMemberFunction); </code>where myObject is an object of myClass
          */
         template<typename T>
         void attach(T *tptr, void(T::*mptr)(void)){