Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of I2SSlave by
Revision 3:5a09a8df83b1, committed 2011-08-04
- Comitter:
- d_worrall
- Date:
- Thu Aug 04 14:59:40 2011 +0000
- Parent:
- 2:f25201f154d0
- Child:
- 4:aa3e863920d2
- Commit message:
- version 2.32
Changed in this revision
| I2SSlave.h | Show annotated file Show diff for this revision Revisions of this file |
--- 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)){
