I want to use the UART20 serial port to map to other pins for easier PCB layout, but when I use the NRF54L15,
overlay config
debug_uart20_default: debug_uart20_default {
group1 {
psels = <NRF_PSEL(UART_TX, 1, 5)>;
};
};
debug_uart20_sleep: debug_uart20_sleep {
group1 {
psels = <NRF_PSEL(UART_TX, 1, 5)>;
low-power-enable;
};
};
mouse_debug:&uart20 {
status = "okay";
current-speed = <9600>;
pinctrl-0 = <&debug_uart20_default>;
pinctrl-1 = <&debug_uart20_sleep>;
pinctrl-names = "default","sleep";
};
my main code
bsp_board_init();
while (1)
{
drv_sensor_init();
dsadsa = bsp_adc_get_value(ADC_CHANNEL_0);
printk("volatage : %d mv\n", dsadsa);
k_msleep(1000);
}but no printk or printf
What should I do ?
Or, in other words, only the default P1.04 can be used

Can the TX pin of this UART be set arbitrarily? Last time, I randomly set the CLK pin of SPI and found that there was no clock, but MOSI, MISO, and CS. Later, I discovered that CLK must be set on a pin with the CLK suffix to have a clock.

