This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to enable Jlink for custom board for nRF52832 DK

I am using nRF52832 DK. I have connected our custom board using Debug out and loading code is successful for custom board. I loaded radio_test code. Now I want to test the radio parameters. For that any settings required on the DK board to enable Jlink for custom board?????? In my system Jlink isi detected in com ports, but I am not getting Radio test in terminal. Please provide any settings required to enable Jlink for custom board.

Thanks in Advance.

Parents Reply
  • REQ: when both mobile and Bluetooth device is connected, character should be sent from Bluetooth device to mobile for doing some functionality in mobile side.

    Action Taken :

    I have used sd_ble_gatts_hvx() function for sending the character from device to mobile as below,

    memset(&params, 0, sizeof(params));
    params.type = BLE_GATT_HVX_NOTIFICATION;
    params.handle = p_char_send.char_handles.value_handle;
    params.p_data = data_to_send;
    params.p_len = &len;
    params.offset = 0;
    

    err_code = ble_ias_c_send_alert_level(&m_ias_c, two_press);

    but its not working for me. so, what change i have to do in in order to send character or number from device to mobile?.

Children
No Data
Related