How to configure S130 Softdevice as Completely Central(S120) i.e with Out Switching its mode to peripheral to operate like a central.
Is there any API or Example to do that from Application w.r.t to SDK10 & SDK11.
If SDK_11 can below code can make it behave as central completely. i.e specifying central link count as 8 and peripheral link count as 0 to softdevice_enable API?
ble_enable_params_t ble_enable_params;
ble_enable_params.gap_enable_params.central_conn_count=8; ble_enable_params.gap_enable_params.peripheral_conn_count=0; ble_enable_params.gap_enable_params.cenral_sec_count=8;
softdevice_enable(&ble_enable_params);