Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of X_NUCLEO_IDB0XA1 by
Diff: source/platform/btle.cpp
- Revision:
- 220:e02936f0d4c7
- Parent:
- 219:d8e8cd4d4521
- Child:
- 221:7896e6d8b652
--- a/source/platform/btle.cpp Thu Mar 31 11:16:47 2016 +0200 +++ b/source/platform/btle.cpp Tue Apr 05 11:23:33 2016 +0200 @@ -72,6 +72,9 @@ #define IDB04A1 0 #define IDB05A1 1 +// Mode 0x03 allows a central to advertise while a connection is ongoing +#define STACK_MODE (0x03) + void HCI_Input(tHciDataPacket * hciReadPacket); uint16_t g_gap_service_handle = 0; @@ -134,6 +137,13 @@ /* set BLE version string */ setVersionString(hwVersion, fwVersion); + if (bnrg_expansion_board == IDB05A1) { + uint8_t stackMode = STACK_MODE; + ret = aci_hal_write_config_data(CONFIG_DATA_ROLE, + CONFIG_DATA_ROLE_LEN, + &stackMode); + } + /* The Nucleo board must be configured as SERVER */ //check if isSetAddress is set then set address. // ANDREA @@ -246,10 +256,11 @@ // Observer role is not supported by X-NUCLEO-IDB04A1, return BLE_ERROR_NOT_IMPLEMENTED if(bnrg_expansion_board == IDB05A1) { + PRINTF("scan_interval=%d scan_window=%d\n\r", scan_interval, scan_window); ret = aci_gap_start_observation_procedure(scan_interval, - scan_window, + scan_window, scan_type, - own_address_type, + own_address_type, 1); // 1 to filter duplicates } else { ret = BLE_STATUS_INVALID_CID;