Hi,
I afraid the answer is no but just to avoid I have overseen something:
Assumed I want to get an interrupt whenever the input GPIO0[17] changes. There I can define an interrupt on GPIO_INT_TYPE_BOTH_LEVEL, means it happens when HIGH or LOW is detected on that input pin.
My question: is it possible to call two different ISRs for same input pin depending if the level goes to HIGH or LOW? Means GPIO_INT_TYPE_LEVEL_LOW calls one ISR and GPIO_INT_TYPE_LEVEL_HIGH an other one?
Thanks!