I'm just using the s110 double bank example and I have gotten it to run on the dev board just fine.
When I try running it on a custom board with a NRF51822 version 3 that doesn't have a 32khz crystal I can't get it to run. I changed the pin defines to fit my board. The main differnece between my board and the dev board is I don't have a 32khz crystal just the 16mhz crystal. I changed the softdevice to use the RC
SOFTDEVICE_HANDLER_APPSH_INIT(NRF_CLOCK_LFCLKSRC_XTAL_20_PPM, true); To SOFTDEVICE_HANDLER_APPSH_INIT(NRF_CLOCK_LFCLKSRC_RC_250_PPM_TEMP_16000MS_CALIBR ATION, true);
The bootloader seems to hang, and i don't even see the bluetooth device when scanning so i dont think the softdevice is even working correctly.
Is there more I need to do in order to run the DFU bootloader without a 32khz crystal? Thanks