Further advertising tests

This commit is contained in:
ktownsend 2013-12-16 20:00:05 +00:00
parent 396a2dd9ef
commit 7922665401
1 changed files with 3 additions and 3 deletions

View File

@ -165,18 +165,18 @@ ble_error_t nRF51822::setAdvertising(GapAdvertisingParams & params, GapAdvertisi
/* ToDo: Check response */
wait(0.1);
/* 3.) Send scan response data, Command ID = 0x000x */
/* 3.) Send scan response data, Command ID = 0x000B */
if ((params.getAdvertisingType() == GapAdvertisingParams::ADV_SCANNABLE_UNDIRECTED))
{
len = advData.getPayloadLen();
buffer = advData.getPayload();
uart.printf("10 0A 00 %02X ", len);
uart.printf("10 0B 00 %02X ", len);
for (uint16_t i = 0; i < len; i++)
{
uart.printf(" %02X", buffer[i]);
}
uart.printf("\r\n");
/* ToDo: Check response */
wait(0.1);
}