Merged in young-mu/nuttx/developing (pull request #15)

Fix a bug of GPIO falling-edge interrupt for tiva
This commit is contained in:
Gregory Nutt
2016-05-08 01:40:56 -06:00
+2 -2
View File
@@ -661,9 +661,9 @@ static inline void tiva_interrupt(uint32_t pinset)
{ {
case GPIO_INT_FALLINGEDGE: case GPIO_INT_FALLINGEDGE:
{ {
isset = pin; isclr = pin;
ibeclr = pin; ibeclr = pin;
ievset = pin; ievclr = pin;
} }
break; break;