add 'characteristics' to discoveryStatus

master
Rohit Grover 2015-05-01 09:48:44 +01:00
parent 4703c1d2b8
commit d8e4f85a27
1 changed files with 3 additions and 2 deletions

View File

@ -101,8 +101,9 @@ struct DiscoveryStatus_t {
serviceDiscoveryInProgress = false;
}
DiscoveredService services[BLE_DB_DISCOVERY_MAX_SRV]; /**< Information related to the current service being discovered.
* This is intended for internal use during service discovery. */
DiscoveredService services[BLE_DB_DISCOVERY_MAX_SRV]; /**< Information related to the current service being discovered.
* This is intended for internal use during service discovery. */
DiscoveredCharacteristic characteristics[BLE_DB_DISCOVERY_MAX_CHAR_PER_SRV];
uint16_t connHandle; /**< Connection handle as provided by the SoftDevice. */
uint8_t currSrvInd; /**< Index of the current service being discovered. This is intended for internal use during service discovery.*/