Switched to main mbed library

This commit is contained in:
ktownsend 2013-12-19 14:02:49 +00:00
parent d30933c63f
commit 7749e93bb4
3 changed files with 2 additions and 8 deletions

View File

@ -11,7 +11,7 @@ void nRF51822::uartCallback(void)
/* ToDo: Check responses and set a flag for success/error/etc. */
/* Read serial to clear the RX interrupt */
printf("%c", uart.getc());
uart.getc();
}
/**************************************************************************/
@ -174,14 +174,11 @@ ble_error_t nRF51822::setAdvertising(GapAdvertisingParams & params, GapAdvertisi
/* 2.) Send advertising data, Command ID = 0x000A */
len = advData.getPayloadLen();
buffer = advData.getPayload();
printf("10 0A 00 %02X", len);
uart.printf("10 0A 00 %02X", len);
for (uint16_t i = 0; i < len; i++)
{
printf(" %02X", buffer[i]);
uart.printf(" %02X", buffer[i]);
}
printf("\r\n");
uart.printf("\r\n");
/* ToDo: Check response */
@ -192,14 +189,11 @@ ble_error_t nRF51822::setAdvertising(GapAdvertisingParams & params, GapAdvertisi
{
len = scanResponse.getPayloadLen();
buffer = scanResponse.getPayload();
printf("10 0B 00 %02X", len);
uart.printf("10 0B 00 %02X", len);
for (uint16_t i = 0; i < len; i++)
{
printf(" %02X", buffer[i]);
uart.printf(" %02X", buffer[i]);
}
printf("\r\n");
uart.printf("\r\n");
/* ToDo: Check response */

View File

@ -1 +0,0 @@
http://mbed.org/users/bogdanm/code/mbed-src-flowcontrol-new/#d12849734720

1
mbed-src.lib Normal file
View File

@ -0,0 +1 @@
https://mbed.org/users/mbed_official/code/mbed-src/#7b352733b00a