I'm in the process of porting code from a PCA10000 rev2 board to a custom board, using the ISP130301 integrated MCU (contains a rev3 nrf51822 IC). I'm using nrf51 SDK 6.1.0 and S110 SD 7.1.0. The code works on the PCA10000.
I can successfully enable the softdevice, add a service and begin advertising, etc, with no errors:
timers_init();
buttons_init();
ble_stack_init();
device_manager_init();
// Initialize Bluetooth Stack parameters.
gap_params_init();
advertising_init();
services_init();
conn_params_init();
// Start advertising.
advertising_start();
Though, I am not seeing the device on the Nordic Master Control Panel app. I try the exact same code on the PCA10000 and it works a charm. The only thing that is different is the change from rev2 to rev3 nrf51822 SoC (Along with IO mapping, though that shouldn't affect the radio).
Note, I have read nWP-021, it didn't get me anywhere.
Any ideas as to why this is the case, or a next best step to fixing the problem?
Thanks