udword and udbytes?

Hi all,

Could anybody please shed some light on what 'udword' and 'udbytes' may refer to in the context of RS232 serial streams? Such as "choose the data channels to be sent in the UDWORD positions of the datastream"...

Many thanks!

UDWORD = Unsigned Double Word = Unsigned long in arduino terms. Its an unsigned 4byte integer.

Ah, that makes perfect sense now - and the same for 'udbyte'. Cheers!

I've never come across udbyte before, but I am guessing it will be the same as:

UWORD = Unsigned Word = 2bytes integer = 'unsigned int' in arduino.