Hi Nordic,
I am using the example in SDK15, ble_central_and_peripheral -> ble_app_interactive. After being connected to a device, and after pairing. I am trying to make a service discovery, but what i can make of it, is that it only writes out all the services at once. I want it to instead write out, each time it receives a response with a gatt service. Is this possible?
I have search my way through the SDK, and have found:
SVCALL(SD_BLE_GATTC_PRIMARY_SERVICES_DISCOVER, uint32_t, sd_ble_gattc_primary_services_discover(uint16_t conn_handle, uint16_t start_handle, ble_uuid_t const *p_srvc_uuid));
Which I believe is the one that makes the service discovery. But can i make it print out everytime it receives a service, instead of writing them out all at once?
Regards Andreas