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: dummy.cpp
- Revision:
- 0:b2580afd6abb
diff -r 000000000000 -r b2580afd6abb dummy.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dummy.cpp Fri Nov 14 04:13:14 2014 +0000
@@ -0,0 +1,18 @@
+#include "mbed.h"
+
+#if defined(TARGET_RZ_A1H)
+
+__weak void gpio_irq_disable(gpio_irq_t *obj) {}
+
+__weak void gpio_irq_enable(gpio_irq_t *obj) {}
+
+__weak void gpio_irq_free(gpio_irq_t *obj) {}
+
+__weak void gpio_irq_set(gpio_irq_t *obj, gpio_irq_event event, uint32_t enable) {}
+
+__weak int gpio_irq_init(gpio_irq_t *obj, PinName pin, gpio_irq_handler handler, uint32_t id)
+{
+ return 1;
+}
+
+#endif