mbed library sources
Fork of mbed-src by
Diff: common/InterruptIn.cpp
- Revision:
- 35:371630885ad6
- Parent:
- 15:4892fe388435
- Child:
- 36:ab3ee77451e7
--- a/common/InterruptIn.cpp Fri Oct 11 13:30:08 2013 +0100 +++ b/common/InterruptIn.cpp Mon Oct 21 11:45:04 2013 +0100 @@ -99,6 +99,14 @@ } } +void InterruptIn::enable_irq() { + gpio_irq_enable(&gpio_irq); +} + +void InterruptIn::disable_irq() { + gpio_irq_disable(&gpio_irq); +} + #ifdef MBED_OPERATORS InterruptIn::operator int() { return read();