I have an active low interrupt source, but the AM1808 seems not supporting level sensing interrupt on the GPIO pin, how can I make it as level sensing?
Colman
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I have an active low interrupt source, but the AM1808 seems not supporting level sensing interrupt on the GPIO pin, how can I make it as level sensing?
Colman
The GPIO on AM1808 does not have level sensing interrupt. There is only edge sensing. You can trigger on either rising edge, falling edge, or both.
For instance, if you want to determine when your signal goes active (low), you can configure the GPIO to trigger an interrupt on the falling edge (going from high to low).
--Christina