Hi Isaac,

It would be more helpful if you could explain what you need in more detail.

As much as I understood, reading the port pins individually could work for you.

Nibbles are BITs, not bytes.

nibble1 = PORTD.0
nibble2 = PORTD.1
nibble3 = PORTD.2
nibble4 = PORTD.3

Then you can take these four bits and use as you like.


Or am I on the wrong track here?


--------------------