:orphan: .. title:: CONFIG_UART_0_GPIO_MANAGEMENT .. kconfig:: CONFIG_UART_0_GPIO_MANAGEMENT CONFIG_UART_0_GPIO_MANAGEMENT ############################# *Enable GPIO management on port 0* Type: ``bool`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`PM_DEVICE ` && (\ :kconfig:`UART_0_NRF_UART ` || \ :kconfig:`UART_0_NRF_UARTE `) && \ :kconfig:`UART_NRFX ` && \ :kconfig:`SERIAL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/serial/Kconfig.nrfx:99`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:26`` → ``/serial/Kconfig:116`` Menu path: (Top) → Device Drivers → Serial Drivers → nRF UART nrfx drivers .. code-block:: kconfig config UART_0_GPIO_MANAGEMENT bool "Enable GPIO management on port 0" default y depends on PM_DEVICE && (UART_0_NRF_UART || UART_0_NRF_UARTE) && UART_NRFX && 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.)*