This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

What is p_ble_evt->header.evt_id = 0x1D

Hi, What does it means number 0x1D in p_ble_evt->header.evt_id in ble_db_discovery_on_ble_evt ? I didn't get any error code, but service discovery is not completed.

Is it necessary to stop advertising on beacon when It is connected? Have to stop scanning when I am connect ?

Parents
  • FormerMember
    0 FormerMember

    The event corresponding to the ID 0x1D is BLE_GAP_EVT_ADV_REPORT:

    BLE_GAP_EVTS: BLE_GAP_EVT_ADV_REPORT = BLE_GAP_EVT_BASE (0x10) + 0x0D = 0x1D

    It works fine to advertise while in a connection.

    It is not necessary to stop scanning while in a connection. The latest version of the softdevice (S132 v.3.x.x) supports up to eight connections.

Reply
  • FormerMember
    0 FormerMember

    The event corresponding to the ID 0x1D is BLE_GAP_EVT_ADV_REPORT:

    BLE_GAP_EVTS: BLE_GAP_EVT_ADV_REPORT = BLE_GAP_EVT_BASE (0x10) + 0x0D = 0x1D

    It works fine to advertise while in a connection.

    It is not necessary to stop scanning while in a connection. The latest version of the softdevice (S132 v.3.x.x) supports up to eight connections.

Children
No Data
Related