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.
Diff: mRotaryEncoder.h
- Revision:
- 3:39c2fc4482be
- Parent:
- 2:f99ac9745a2c
- Child:
- 5:75ddffaf3721
diff -r f99ac9745a2c -r 39c2fc4482be mRotaryEncoder.h
--- a/mRotaryEncoder.h Tue Feb 01 19:43:46 2011 +0000
+++ b/mRotaryEncoder.h Tue Feb 01 19:54:35 2011 +0000
@@ -78,7 +78,7 @@
* @param fptr Pointer to callback-function
*/
void attachSW(void (*fptr)(void)) {
- m_pinSW->attach_asserted(fptr);
+ m_pinSW->attach_deasserted(fptr);
}
template<typename T>
@@ -90,7 +90,7 @@
*/
void attachSW(T* tptr, void (T::*mptr)(void)) {
if ((mptr != NULL) && (tptr != NULL)) {
- m_pinSW->fall(tptr, mptr);
+ m_pinSW->attach_deasserted(tptr, mptr);
}
}