mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
16 lines
583 B
Plaintext
16 lines
583 B
Plaintext
|
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.
|