As the title says, I'm struggling to make the serial interface work with nRF5240 CKAA
I'm using nRF52840DK for flashing the chip by using the P20 header to power and connect to the target (3V0, SWD CLK, SWD IO) and GND from outside the header.
As said, RTT connects by itself when automatically searching for it, but Serial communication doesn't work and I am not sure if my settings are to blame.
I am using the 52840DK config to which I added this prj.conf
# Logger module CONFIG_LOG=y # Button and LED library CONFIG_DK_LIBRARY=y CONFIG_I2C=y # Bluetooth LE CONFIG_BT=y # STEP 1 - Include the Peripheral Role support CONFIG_BT_PERIPHERAL=y # STEP 2 - Change the Bluetooth LE device name to Nordic_Peripheral CONFIG_BT_DEVICE_NAME="TEST_UNIT_4" # Increase stack size for the main thread and System Workqueue CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048 CONFIG_MAIN_STACK_SIZE=2048 CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL=n CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y CONFIG_BOARD_ENABLE_DCDC=n
What am I missing?