Hello. I tried to run ble_peripheral/ble_app_uart example from the newest SDK (17.2) on my ebyte e73 with nRF52833 onboard, but without success. I used softdevice S140 (tried both 7.0.1 and 7.2.0 versions). So far I've been successful with running this example on another ebyte with nRF52832 onboard. I don't think that it is a hardware issue, because I tried programming code which does not require soft device and it worked pretty well. To my surprise ble_app_beacon example with S132 also worked. To flash the program i do the following (using openocd):
init_reset halt; init; halt; nrf51 mass_erase; reset; program "/path/to/nrf528_xxaa.out" verify; program "/path/to/s140_nrf52_7.2.0_softdevice.hex" 0x0 verify
I tried debugging with GDB, it seems that the problem is encountered when `sd_softdevice_enable` is called.
Any ideas what could be the cause?