:orphan: .. title:: UART_3_GPIO_MANAGEMENT .. option:: CONFIG_UART_3_GPIO_MANAGEMENT *Enable GPIO management on port 3* Type: ``bool`` Help ==== If enabled, the driver will configure the GPIOs used by the uart to their default configuration when device is powered down. The GPIOs will be configured back to correct state when UART is powered up. Direct dependencies =================== \ :option:`PM_DEVICE ` && \ :option:`UART_3_NRF_UARTE ` && \ :option:`UART_NRFX ` && \ :option:`SERIAL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``drivers/serial/Kconfig.nrfx:303`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:24`` → ``drivers/serial/Kconfig:93`` Menu path: (Top) → Device Drivers → Serial Drivers → nRF UART nrfx drivers .. parsed-literal:: config UART_3_GPIO_MANAGEMENT bool "Enable GPIO management on port 3" default y depends on \ :option:`PM_DEVICE ` && \ :option:`UART_3_NRF_UARTE ` && \ :option:`UART_NRFX ` && \ :option:`SERIAL ` help If enabled, the driver will configure the GPIOs used by the uart to their default configuration when device is powered down. The GPIOs will be configured back to correct state when UART is powered up. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*