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: SSD1306_smart_watch
Fork of mbed-src by
Diff: common/InterruptIn.cpp
- Revision:
- 212:34d62c0b2af6
- Parent:
- 113:65a335a675de
diff -r fb8edfff6ae1 -r 34d62c0b2af6 common/InterruptIn.cpp --- a/common/InterruptIn.cpp Sun May 25 08:00:07 2014 +0100 +++ b/common/InterruptIn.cpp Mon May 26 18:15:07 2014 +0100 @@ -19,7 +19,10 @@ namespace mbed { -InterruptIn::InterruptIn(PinName pin) { +InterruptIn::InterruptIn(PinName pin) : gpio(), + gpio_irq(), + _rise(), + _fall() { gpio_irq_init(&gpio_irq, pin, (&InterruptIn::_irq_handler), (uint32_t)this); gpio_init_in(&gpio, pin); }