# Copyright (C) Frickly Systems GmbH
# Copyright (C) MBition GmbH
#
# SPDX-License-Identifier: Apache-2.0

menuconfig POWER_IO_SHIELD
  bool
  prompt "Power IO Shield Driver"
  depends on GPIO && I2C

if POWER_IO_SHIELD
  module = POWER_IO_SHIELD
  module-str = Power IO Shield
  source "subsys/logging/Kconfig.template.log_config"

  config POWER_IO_SHIELD_INIT_PRIORITY
    int
    prompt "Power IO Shield init priority"
    default I2C_INIT_PRIORITY

  config EMUL_POWER_IO_SHIELD
    bool
    prompt "Power IO Shield Emulator"
    depends on EMUL
    default n
endif
