zephyr/tests/drivers/uart/uart_async_api/boards
Gerard Marull-Paretas 4b9c3d7134 boards: arm: stm32: add pinctrl state name for UART peripheral
Add the pinctrl state name (default) for the UART/USART/LPUART
peripherals. Changes performed using the following Python script run
from the repository root:

```
from pathlib import Path
import re

for fpath in Path(".").glob("boards/arm/**/*.dts"):
    lines = open(fpath).readlines()

    is_stm32 = False
    for line in lines:
        if "stm32" in line:
            is_stm32 = True
            break

    if not is_stm32:
        continue

    with open(fpath, "w") as f:
        for line in lines:
            f.write(line)

            m = re.match(r"(\s+)pinctrl-0.*us?art.*", line)
            if m:
                f.write(m.group(1) + "pinctrl-names = \"default\";\n")
```

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2021-11-26 11:36:42 +01:00
..
atsamd21_xpro.overlay
atsame54_xpro.overlay
atsamr21_xpro.overlay tests: uart_async_api: Correct DMA channels on atsamr21_xpro board 2021-09-19 19:31:25 -04:00
disco_l475_iot1.overlay tests: drivers: uart asynch test with overlay for each stm32 board 2021-07-22 04:52:53 -04:00
nrf9160dk_nrf9160.conf
nrf9160dk_nrf9160.overlay
nrf52840dk_nrf52840.overlay
nucleo_f103rb.overlay tests: drivers: uart asynch test with overlay for each stm32 board 2021-07-22 04:52:53 -04:00
nucleo_f207zg.overlay tests: drivers: uart async with DMA on stm32fx nucleo144 boards 2021-08-26 06:56:49 -04:00
nucleo_f429zi.overlay tests: drivers: uart async with DMA on stm32fx nucleo144 boards 2021-08-26 06:56:49 -04:00
nucleo_g071rb.overlay tests: drivers: uart asynch test with overlay for each stm32 board 2021-07-22 04:52:53 -04:00
nucleo_g474re.overlay tests: drivers: uart asynch test with overlay for each stm32 board 2021-07-22 04:52:53 -04:00
nucleo_h723zg.conf soc: arm: stm32h7 do not use data cache with DMA 2021-08-20 06:28:32 -04:00
nucleo_h723zg.overlay tests: drivers: uart stm32 run uart_async_api on stm32h723 2021-08-20 06:28:32 -04:00
nucleo_l4r5zi.overlay tests: drivers: uart asynch test with overlay for each stm32 board 2021-07-22 04:52:53 -04:00
nucleo_l152re.overlay boards: arm: stm32: add pinctrl state name for UART peripheral 2021-11-26 11:36:42 +01:00
nucleo_l552ze_q_ns.overlay tests: uart: uart async test running on the stm32l5xx boards 2021-07-22 04:52:53 -04:00
nucleo_l552ze_q.overlay tests: uart: uart async test running on the stm32l5xx boards 2021-07-22 04:52:53 -04:00
segger_rtt.overlay
stm32f3_disco.overlay tests: drivers: uart async with DMA on stm32fx nucleo144 boards 2021-08-26 06:56:49 -04:00
stm32l562e_dk_ns.overlay tests: uart: uart async test running on the stm32l5xx boards 2021-07-22 04:52:53 -04:00
stm32l562e_dk.overlay tests: uart: uart async test running on the stm32l5xx boards 2021-07-22 04:52:53 -04:00