1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/at24mac/Kconfig

23 lines
722 B
Plaintext
Raw Normal View History

2020-11-11 17:00:38 +01:00
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
comment "AT24MAC unique ID chip enabled as default EUI-48/64 provider"
depends on MODULE_EUI_PROVIDER && HAVE_AT24MAC && MODULE_AT24MAC
2020-11-11 17:00:38 +01:00
config MODULE_AT24MAC
bool
2021-11-24 09:18:42 +01:00
prompt "AT24MAC unique ID chip" if !((MODULE_EUI_PROVIDER || MODULE_MTD) && HAVE_AT24MAC)
default ((MODULE_EUI_PROVIDER || MODULE_MTD) && HAVE_AT24MAC)
2020-11-11 17:00:38 +01:00
select MODULE_AT24CXXX
2021-09-30 13:41:31 +02:00
depends on HAS_PERIPH_I2C
2020-11-11 17:00:38 +01:00
depends on TEST_KCONFIG
2021-09-30 13:41:31 +02:00
config HAVE_AT24MAC
bool
help
Indicates that an AT24MAC unique ID chip is present.