imon vfd driver complexity question

Hans Petter Selasky hselasky at c2i.net
Fri Aug 27 07:23:00 UTC 2010


On Friday 27 August 2010 09:17:24 Jim Bryant wrote:
> unsigned char

Try to use the:

uint8_t
uint16_t
uint32_t

int8_t
int16_t
int32_t 

types when describing data types. Also think about endianness and that 32-bit 
reads/writes must be 32-bit aligned. Else use UGETDW() and similar functions.

--HPS


More information about the freebsd-usb mailing list