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: NUCLEO-F030R8_ExtXtalTest
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();
