Hi,
I am working on a project to send commands from mobile to device and vice versa.
I am using nRF5_SDK_17.0.0_9d13099\examples\ble_peripheral\ble_app_template.
I have made a custom service and characteristics and made secured like this.
BLE_GAP_CONN_SEC_MODE_SET_ENC_NO_MITM(&cus_init.custom_value_char_attr_md.read_perm); BLE_GAP_CONN_SEC_MODE_SET_ENC_NO_MITM(&cus_init.custom_value_char_attr_md.write_perm);
Now is there is built-in enabled encryption or I have to enable? If I have to enable can you please guide how can I do that?
My main purpose is to secure my firmware.
Thanks!