I have a TITAN board with Win CE 5.0. I have added a PC104 board. I have an interrupt (IRQ10) set to go off when the board needs data. I can read the address and see the value and figure out which IRQ has occurred. But I can not figure out how to get the interrupt. If I use InitializeInterrupt, what do I put in for the IRQ value? Any help would be appreciated.
I was able to read the interrupt. I used the value for SYSINTR_IRQ10 in the oalintr.h file and then used the command InterruptInitialize(SYSINT_IRQ10,event,NULL,0) to define the interrupt. Then wait for the interrupt with WaitForSingleObject(event,INFINITE). Then once the interrupt occurs, clear it with InterruptDone(SYSINTR_IRQ10).