Hello everyone,
im using ble tamplate example and Softdevice s140 with the nRF52840 DK.
im trying to change the GAP Data. How and where can i do this?
i want to configure my Nordic Device with this Beurer Data
Thank you
Hello everyone,
im using ble tamplate example and Softdevice s140 with the nRF52840 DK.
im trying to change the GAP Data. How and where can i do this?
i want to configure my Nordic Device with this Beurer Data
Thank you
Hi!
So, in the main file you can change your device name by changing the string defined in
#define DEVICE_NAME "Nordic_Template"
The appearance can be changed by using
uint32_t sd_ble_gap_appearance_set(uint16_t appearance)
and the PPCP can be changed by using
uint32_t sd_ble_gap_ppcp_set(ble_gap_conn_params_t const * p_conn_params)
Unfortunately, there is no way to disable the Central Address Resolution characteristic.
Best regards,
Heidi
Hi!
So, in the main file you can change your device name by changing the string defined in
#define DEVICE_NAME "Nordic_Template"
The appearance can be changed by using
uint32_t sd_ble_gap_appearance_set(uint16_t appearance)
and the PPCP can be changed by using
uint32_t sd_ble_gap_ppcp_set(ble_gap_conn_params_t const * p_conn_params)
Unfortunately, there is no way to disable the Central Address Resolution characteristic.
Best regards,
Heidi