pp. 88, 91 For endian-correctness, a hard-coded UUID should be specified as an array of 16 8-bit integers, and not an array of 4 32-bit integers. i.e the following is incorrect:
uint32_t svc_uuid_int[] = { 0, 0, 0, 0xABCD }
and should be replaced with:
uint8_t svc_uuid_int[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xAB, 0xCD };
Last modified: Sun Sep 16 03:01:36 EDT 2007