Beacon demo for the BLE API using the nRF51822 native mode drivers
Dependencies: BLE_API mbed nRF51822
Fork of BLE_iBeacon by
Diff: main.cpp
- Revision:
- 43:b5dc3241fc91
- Parent:
- 42:bb46ad5c24dd
- Child:
- 44:71ff94cd9c1d
diff -r bb46ad5c24dd -r b5dc3241fc91 main.cpp --- a/main.cpp Tue Aug 12 08:28:45 2014 +0000 +++ b/main.cpp Tue Sep 02 16:09:59 2014 +0000 @@ -45,14 +45,14 @@ * Tx Power = C8 */ const uint8_t beaconPayload[] = { - 0x4C, 0x00, // Company identifier code (0x004C == Apple) - 0x02, // ID - 0x15, // length of the remaining payload - 0xE2, 0x0A, 0x39, 0xF4, 0x73, 0xF5, 0x4B, 0xC4, // location UUID + 0x4C, 0x00, + 0x02, + 0x15, + 0xE2, 0x0A, 0x39, 0xF4, 0x73, 0xF5, 0x4B, 0xC4, 0xA1, 0x2F, 0x17, 0xD1, 0xAD, 0x07, 0xA9, 0x61, - 0x00, 0x00, // the major value to differentiate a location - 0x00, 0x00, // the minor value to differentiate a location - 0xC8 // 2's complement of the Tx power (-56dB) + 0x00, 0x00, + 0x00, 0x00, + 0xC8 }; int main(void)