rename to DiscoveryStatus_t

master
Rohit Grover 2015-04-30 10:09:46 +01:00
parent 183cba0ac3
commit 9110e88fff
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ struct DiscoveredService {
Gap::Handle_t endHandle; /**< Service Handle Range. */
};
struct ble_db_discovery_t {
struct DiscoveryStatus_t {
DiscoveredService services[BLE_DB_DISCOVERY_MAX_SRV]; /**< Information related to the current service being discovered.
* This is intended for internal use during service discovery. */
@ -60,7 +60,7 @@ struct ble_db_discovery_t {
bool characteristicDiscoveryInProgress;
};
static ble_db_discovery_t discoveryStatus;
static DiscoveryStatus_t discoveryStatus;
void launchServiceDiscovery(Gap::Handle_t connectionHandle)
{