Reading digital output status

Hello everyone, we have bought the Rabbit BL2600 Wolf and I try to read the status of my digital outputs. I’m able to switch the digital outputs on and off. Does anyone know wich status register I need to read, to see the change in my software?

Hmmm, I found out that I could use digIn().

Some of the hardware registers has software “shadow registers” as well. These are used when you can’t read back from a register.

When you update the hardware register, what really happens is you update the software shadow register, then write the shadow register to the hardware register. This allows you to flip bits on a byte writeable register, as well.

HTH,
*the other brian