gpio.c: mraa_gpio_wait_interrupt() now waits for subsequent interrupts
authorHenry Bruce <henry.bruce@intel.com>
Tue, 10 Feb 2015 15:39:21 +0000 (15:39 +0000)
committerBrendan Le Foll <brendan.le.foll@intel.com>
Tue, 10 Feb 2015 15:39:21 +0000 (15:39 +0000)
Signed-off-by: Henry Bruce <henry.bruce@intel.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
src/gpio/gpio.c

index a02e8d0..4cd3fad 100644 (file)
@@ -156,6 +156,7 @@ mraa_gpio_wait_interrupt(int fd)
     pfd.events = POLLPRI;
 
     // do an initial read to clear interupt
+    lseek (fd, 0, SEEK_SET);
     read (fd, &c, 1);
 
     if (fd <= 0) {