I'm aware of the importance of the concept of endianism, but I don't really know its formal definition.
In particular, what does mean "big-endian" when applied to network programming?
i.e., which byte "comes first" from the bus, in a big-endian tx scheme?
Regarding compilers, for a type of 16 bits, will it make any difference the operation:
(0xff & ( t_16_data >> 8 ) )
regarding compiler / platform endianness?
In particular, what does mean "big-endian" when applied to network programming?
i.e., which byte "comes first" from the bus, in a big-endian tx scheme?
Regarding compilers, for a type of 16 bits, will it make any difference the operation:
(0xff & ( t_16_data >> 8 ) )
regarding compiler / platform endianness?
Comment