zephyr/boards/arm/nucleo_h743zi
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
..
doc boards: arm: nucleo_h743zi: full Arduino SPI support 2021-06-29 11:32:15 -04:00
support boards: nucleo_h743zi: Fix openocd configuration 2020-12-03 11:33:20 -05:00
arduino_r3_connector.dtsi boards: nucleo_h743zi: Add SPI support 2020-11-19 12:35:12 +01:00
board.cmake boards: arm: nucleo_h743zi: add support for stm32cubeprogrammer runner 2020-11-04 14:47:35 -06:00
Kconfig.board boards: arm: initial suport for NUCLEO-H743ZI 2020-03-11 17:10:58 +01:00
Kconfig.defconfig boards: nucleo_h743zi: enable ethernet support 2020-11-05 08:30:06 -06:00
nucleo_h743zi.dts boards: arm: stm32: add pinctrl state name for UART peripheral 2021-11-26 11:36:42 +01:00
nucleo_h743zi.yaml boards: arm: Add usbotg_fs to nucleo_h743 and nucleo_h753. 2021-03-29 13:42:46 -04:00
nucleo_h743zi_defconfig boards: arm: stm32: enable pinctrl driver 2021-11-26 11:36:42 +01:00