Hi,
I am using the ble_gls_app provided in the SDK 8.1. Also i am using S110 softdevice v8.0.
When i am trying to bond through MCP it is asking for a passkey. How can i disable that feature?
Thanks & Regards, Sumit
Hi,
I am using the ble_gls_app provided in the SDK 8.1. Also i am using S110 softdevice v8.0.
When i am trying to bond through MCP it is asking for a passkey. How can i disable that feature?
Thanks & Regards, Sumit
Hi, to remove this security requirement, change the following defines in main.c:
SEC_PARAM_MITM from '1' to '0'
SEC_PARAM_IO_CAPABILITIES from BLE_GAP_IO_CAPS_DISPLAY_ONLY to BLE_GAP_IO_CAPS_NONE
The error number, line number and file name should give an indication where the assert occurred. There shouldn't be any dependencies towards compiler settings that can cause the assert( at least that I can think of). Did you remember to adjust DEVICE_MANAGER_APP_CONTEXT_SIZE in device_manager_cnfg.h? If it's set to zero you will get an assert as it is being used to set the Service changed flag
The error number, line number and file name should give an indication where the assert occurred. There shouldn't be any dependencies towards compiler settings that can cause the assert( at least that I can think of). Did you remember to adjust DEVICE_MANAGER_APP_CONTEXT_SIZE in device_manager_cnfg.h? If it's set to zero you will get an assert as it is being used to set the Service changed flag