Unable to send commands over VS studio terminal or putty due to unsatsified dependencies in Kconfig while building with nrf radio test using a custom defined nrf52833 board in nrf connect SDK 2.9.0

I want to use the radio test code from the nrf example library to tune the nrf52833 on a custom board. I managed to build and flash the project, but when connecting to the serial port I am not able to send any commands like "parameters_print". However, the terminal states it has a connection on the correct com port. The compiler provides also the following warning:

warning: CONSOLE_HANDLER (defined at drivers/console/Kconfig:27) was assigned the value 'y' but got
the value 'n'. Check these unsatisfied dependencies: UART_CONSOLE (=n), SERIAL_SUPPORT_INTERRUPT
(=n), CONSOLE (=n). See docs.zephyrproject.org/.../kconfig.html
and/or look up CONSOLE_HANDLER in the menuconfig/guiconfig interface. The Application Development
Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual
might be helpful too.

I tried to add the unsattisfied dependencies to the prj.conf file and assign the value y to them but I get stuck at SERIAL_SUPPORT_INTERRUPT and CONFIG_SERIAL_HAS_DRIVER since they are not directly user-configurable.

I am quite new to this sdk so it might be something small I am missing but it would be nice if somebody is able to help me.

Thanks in advance!

Related