Hi,
I have a nrf51-DK, and I use softdevice s130_1.0.0 with keil c 5.18a,
My project with custom service uuid "DFU" and custom uuid "my_uuid", and battery uuid, alert uuid...,
After I paired with my device, it will trigger a timer start a security bonding(just like ancs example):
case DM_EVT_LINK_SECURED: err_code = ble_db_discovery_start(&m_ble_db_discovery, p_event->event_param.p_gap_param->conn_handle);
but I get an event from ble_db_discovery_on_ble_evt() case BLE_GATTC_EVT_PRIM_SRVC_DISC_RSP, the **
GATT STATUS IS 0x010A
**,
and I also check that means:
define BLE_GATT_STATUS_ATTERR_ATTRIBUTE_NOT_FOUND 0x010A
Only if I remove all custom uuid(128bit) in my project such as "DFU", and just let battery uuid service, alert uuid service in my code, I finally get GATT STATUS 0x0000, and finish to register service to APPLE.
Are there any connection between service uuid 128bit and ANCS?
Can anyone give me a hint?
Thx for your help