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
commit f69b7d41db
1 changed files with 2 additions and 2 deletions

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;