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.
Dependents: rosserial_mbed_lib
Fork of MODSERIAL by
Diff: MODSERIAL.h
- Revision:
- 10:725fe81aa9ff
- Parent:
- 9:b3cdae80e7a9
- Child:
- 11:a93a62eeeb9d
--- 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:
/**
