Connect cross power-domain to UART00 on P2 of nRF54L15 DK

Hi there!

May I know how to have UART00 on P2 like what is shown below as I wanted to have higher speed.

Is it the same as other UART assignments on P0 and P1?

Thanks!

Parents Reply
  • Sorry. I missed that part.

    You can't use P2.06 for UARTE00. You can look in the pin Assignment (Table 3) on this site what pins you can use for UARTE00. On P2, you can use:

    P2.00
    P2.02
    P2.04
    P2.05
    P2.07
    P2.08
    P2.09
    P2.10

    I tested just now, and it worked only replacing this line:

    psels = <NRF_PSEL(UART_TX, 2, 8)>, <NRF_PSEL(UART_RX, 2, 6)>;

    with e.g.

    psels = <NRF_PSEL(UART_TX, 2, 8)>, <NRF_PSEL(UART_RX, 2, 7)>;

    Best regards,

    Edvin

Children
Related