zephyr/boards/arm/nucleo_h743zi
Gerard Marull-Paretas 070e2f0782 boards: arm: stm32: enable pinctrl driver
Enable the pin control driver on all STM32 based boards. The following
script has been used to do this task:

```
from pathlib import Path
import re

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

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

    if not is_stm32:
        continue

    lines += ["\n", "# enable pin controller\n", "CONFIG_PINCTRL=y\n"]

    with open(fpath, "w") as f:
        f.writelines(lines)
```

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: move "st,prescaler" to timers instead of pwm 2021-11-16 09:55:30 -06: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