Hello,
I am trying to test the interrupt functionality of the INT pin. The simplest way I see to do this is to write the values 0x0C and 0x04 to the IO Config address as so:
ADDR[0x4484] = 0x04 // Enable interrupt function on INT and set interrupt polarity to active LOW
ADDR[0x4484] = 0x0C // Enable interrupt function on INT and set interrupt polarity to active HIGH
ADDR[0x4484] = 0x04 // Enable interrupt function on INT and set interrupt polarity to active LOW
The idea here is that changing the polarity should simulate an interrupt, however this doesn't seem to work as the INT pin does not toggle.
What am I missing?
Thanks!