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
  • Would you kindly share the fix? I'm guessing that, under the hood, before calling the following function,

    nrf_uarte_baudrate_set(get_uarte_instance(dev), nrf_baudrate);

    the correct baud rate must be calculated, while taking into account the clock source of the peripheral.

    In zephyr's repo, if the peripheral is clocked higher than 16Mhz, the below macro is used to calculate a "custom" baud rate:

    #define UARTE_GET_CUSTOM_BAUDRATE(f_pclk, baudrate) ((BIT(20) / (f_pclk / baudrate)) << 12)

    Which I think is ok, because for an f_pclk of 16M and a baudrate of 1M, it produces a reg value of exactly 0x10000000 (as referenced by the docs to be 1Mbaud for a 16Mhz clock).

Children
No Data
Related