2020-01-14 12:08:25 +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.
|
|
|
|
#
|
2020-08-31 09:33:35 +02:00
|
|
|
menuconfig KCONFIG_USEMODULE_GNRC_SIXLOWPAN_ND
|
2020-01-14 12:08:25 +01:00
|
|
|
bool "Configure GNRC 6LoWPAN Neighbor Discovery"
|
2020-08-31 09:33:35 +02:00
|
|
|
depends on USEMODULE_GNRC_SIXLOWPAN_ND
|
2020-01-14 12:08:25 +01:00
|
|
|
help
|
|
|
|
Configure GNRC 6LoWPAN Neighbor Discovery module using Kconfig.
|
|
|
|
|
2020-08-31 09:33:35 +02:00
|
|
|
if KCONFIG_USEMODULE_GNRC_SIXLOWPAN_ND
|
2020-01-14 12:08:25 +01:00
|
|
|
|
|
|
|
config GNRC_SIXLOWPAN_ND_AR_LTIME
|
|
|
|
int "Registration lifetime for the address registration option in minutes"
|
2020-08-31 09:33:35 +02:00
|
|
|
depends on USEMODULE_GNRC_IPV6_NIB
|
2020-01-14 12:08:25 +01:00
|
|
|
default 15
|
|
|
|
help
|
|
|
|
This value should be adapted to the devices power-lifecycle so that it is
|
|
|
|
greater than the time the device spends sleeping. See RFC 6775, section
|
|
|
|
5.8.1.
|
|
|
|
|
2020-08-31 09:33:35 +02:00
|
|
|
endif # KCONFIG_USEMODULE_GNRC_SIXLOWPAN_ND
|