Radio test sample physical UART interface is not working.

Hi,

I am using the Radio test sample from NCS 2.3.0 nrf/samples/peripheral/radio_test.

I have made a build for the nrf52dk board and tested the UART command interface interface via the USB, it is working with output as expected.

When I load the same build on our target nrf52820 board and tested the physical UART connection, it does not work, no output is shown.

We are using the default pins UART TX(P0.06) and UART RX(P0.08), no overlay file is used.

Can you help me solving the problem with the physical UART interface for the radio test sample?

Br Mads.

Parents
  • Hi,

     

    Which board configuration have you targeted towards your nrf52820 device?

    There's a nrf52833dk_nrf52820 board that uses P0.08/P0.06 for uart by default.

     

    However, it will also enable DCDC and use external 32kHz source.

    If your external board does not have one or both of these options, you should disable them using these configurations:

    # Disable DCDC
    CONFIG_BOARD_ENABLE_DCDC=n
    # Enable internal 32k RC oscillator
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y

     

    Kind regards,

    Håkon

Reply
  • Hi,

     

    Which board configuration have you targeted towards your nrf52820 device?

    There's a nrf52833dk_nrf52820 board that uses P0.08/P0.06 for uart by default.

     

    However, it will also enable DCDC and use external 32kHz source.

    If your external board does not have one or both of these options, you should disable them using these configurations:

    # Disable DCDC
    CONFIG_BOARD_ENABLE_DCDC=n
    # Enable internal 32k RC oscillator
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y

     

    Kind regards,

    Håkon

Children
Related