This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

FULLY Custom Advertisement Data

hi everyone. we are migrating to nordic nrf51 series (before we used ble modules from another vendor blugiga which depends on cc2541 chip) so I m pretty new at nordic nrf51 series.

we had a working solution with that modules based on fully custom advertisement data and scan response data (31 of 31 byte for both of data types) because BGScript allows this ,and now we want to apply same solution model but with nrf51822 chip. in forum there are some question about with this topic but they are not same at exactly my situation.

can anyone share example code for this?. if there needs to make configuration on the api, how can i configure ? my best regards.

Parents
  • The sd_ble_gap_adv_data_set() function will check if your advertising packet conforms to the Bluetooth standard and will run some checks on it. If you want to build an advertising packet that is compatible with the BLE specification, that works, but non-compatible packets will fail.

    I am not too sure about whether the flags need to be included. The latest BLE addendum allows to leave the flags field empty if it is a non-connectable advertising message, but I guess that they have not yet implemented this.

Reply
  • The sd_ble_gap_adv_data_set() function will check if your advertising packet conforms to the Bluetooth standard and will run some checks on it. If you want to build an advertising packet that is compatible with the BLE specification, that works, but non-compatible packets will fail.

    I am not too sure about whether the flags need to be included. The latest BLE addendum allows to leave the flags field empty if it is a non-connectable advertising message, but I guess that they have not yet implemented this.

Children
No Data
Related