mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
# Copyright (c) 2021 Freie Universität
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
# XXX This file only is required since there is no easy way to use these config
|
|
# options with both the final MODULE_CONGURE_ABE (used with TEST_KCONFIG=1) and
|
|
# KCONFIG_USEMODULE_CONGURE_ABE (used with TEST_KCONFIG=0) in a # nicely looking
|
|
# and easy to migrate way. After migration, the content of this file can be folded
|
|
# back into `sys/congure/abe/Kconfig`
|
|
|
|
config CONGURE_ABE_MULTIPLIER_NUMERATOR_DEFAULT
|
|
int "Default numerator of the ABE multiplier"
|
|
default 4
|
|
help
|
|
RFC 8511, section 3.1 defines the ABE multiplier to be 0.8 = 4/5, so
|
|
assuming CONGURE_ABE_MULTIPLIER_DENOMINATOR_DEFAULT is 5, this should be
|
|
4.
|
|
|
|
config CONGURE_ABE_MULTIPLIER_DENOMINATOR_DEFAULT
|
|
int "Default denominator of the ABE multiplier"
|
|
default 5
|
|
help
|
|
RFC 8511, section 3.1 defines the ABE multiplier to be 0.8 = 4/5, so
|
|
assuming CONGURE_ABE_MULTIPLIER_NUMERATOR_DEFAULT is 4, this should be
|
|
5.
|