Hi - I have a MDBT42Q SoC board developed by Seeed Studio which contains the nRF52832 SoC. The board is powered as the image below and I can program the board through the nRF52-DK board. Upload is successful but I do not get a BLE broadcast and other elements of the system are not initialized.

The code starts with a series of initializations - but none of these engage so there is no LED blinking, Bluetooth broadcast, etc.
Is there some way to trouble-shoot the board with a simple program to establish basic functionality?
Regards,
Diarmuid.
Diarmuid O'Connell
int main(void)
{
uint32_t err_code;
bool erase_bonds;
// Initialize.
err_code = app_timer_init();
APP_ERROR_CHECK(err_code);
uart_init();
log_init();
buttons_leds_init(&erase_bonds);
ble_stack_init();
gap_params_init();
gatt_init();
services_init();
advertising_init();
conn_params_init();