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

how to make a device to advertise constantly forever

hi ... i am using nRF52832  , SDK 15.2 version, using ble_app_uart example , here i want to advertise the device constantly, for that what should i change 

i tried to change the #define APP_ADV_DURATION                18000     to 0 ..i am getting fatal error

Parents
  • Hi,

    This is probably caused by you using BLE_GAP_ADV_FLAGS_LE_ONLY_LIMITED_DISC_MODE, and then advertising forever is not allowed. You can fix the problem by changing to BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE.

    (Note that generally, you should test a debug build to see which function returned what error code. That would probably have given you the above solution right away.)

Reply
  • Hi,

    This is probably caused by you using BLE_GAP_ADV_FLAGS_LE_ONLY_LIMITED_DISC_MODE, and then advertising forever is not allowed. You can fix the problem by changing to BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE.

    (Note that generally, you should test a debug build to see which function returned what error code. That would probably have given you the above solution right away.)

Children
No Data
Related