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 TLV320 by
Revision 1:7e76c6f56169, committed 2011-08-04
- Comitter:
- d_worrall
- Date:
- Thu Aug 04 15:07:00 2011 +0000
- Parent:
- 0:bb2411673898
- Commit message:
- version 2.29
Changed in this revision
| TLV320.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/TLV320.h Thu Aug 04 15:04:59 2011 +0000
+++ b/TLV320.h Thu Aug 04 15:07:00 2011 +0000
@@ -106,12 +106,12 @@
*
*/
void read(void);
- /** Attach a void/void function or void/void static member funciton to an interrupt generated by the I2SxxFIFOs
+ /** Attach a void/void function or void/void static member function to an interrupt generated by the I2SxxFIFOs
*
* @param function Function to attach
*
- * e.g. myTlv320Object.attach(&myfunction);
- * OR myTlv320Object.attach(&myClass::myStaticMemberFunction);
+ * e.g. <code> myTlv320Object.attach(&myfunction);</code>
+ * OR <code> myTlv320Object.attach(&myClass::myStaticMemberFunction);</code>
*/
void attach(void(*fptr)(void));
/** Attach a nonstatic void/void member function to an interrupt generated by the I2SxxFIFOs
@@ -119,7 +119,7 @@
* @param tptr Object pointer
* @param mptr Member function pointer
*
- * e.g. myTlv320Object.attach(&myObject, &myClass::myNonstaticMemberFunction); where myObject is an object of myClass
+ * e.g. <code>myTlv320Object.attach(&myObject, &myClass::myNonstaticMemberFunction);</code> where myObject is an object of myClass
*/
template<typename T>
void attach(T *tptr, void(T::*mptr)(void)){

ARD-AUDIO-DA7212