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

Cant't pass GAP/DISC/NONM/BV-02-C

Hello everybody,

 i can't pass the test case GAP/DISC/NONM/BV-02-C with PTS Tool

My System:

  • nRF51822
  • SDK 12.3.0
  • Softdevice S130

The tool tells me to prepare the IUT into non-discoverable mode and send an advertising report using connectable undirected advertising.

Advertising configuration:

  • BLE_ADV_MODE_FAST
  • Flags = BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE

Could somebody help me?

Parents Reply
  • I was thinking of filter policy you can set when starting advertising on the peripheral, for instance:

        ble_gap_adv_params_t const adv_params =
        {
            .type        = BLE_GAP_ADV_TYPE_ADV_IND,
            .p_peer_addr = NULL,
            .fp          = BLE_GAP_ADV_FP_ANY,
            .interval    = ADV_INTERVAL,
            .timeout     = 0,
        };

    however it may also be that you need to configure some filter policy in the PTS, but I am not familiar with that tool.

Children
Related