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.
Dependencies: mbed FastIO FastPWM USBDevice
Diff: IRRemote/IRReceiver.cpp
- Revision:
- 82:4f6209cb5c33
- Parent:
- 77:0b96f6867312
--- a/IRRemote/IRReceiver.cpp Fri Mar 24 05:42:01 2017 +0000 +++ b/IRRemote/IRReceiver.cpp Thu Apr 13 23:20:28 2017 +0000 @@ -34,8 +34,8 @@ startPulse(pin.read() ? 0 : 1); // set interrupt handlers for edges on the input pin - pin.fall(this, &IRReceiver::fall); - pin.rise(this, &IRReceiver::rise); + pin.fall(&IRReceiver::cbFall, this); + pin.rise(&IRReceiver::cbRise, this); } // Disable reception