forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
33 lines (26 loc) · 733 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Copyright (c) 2022 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
menuconfig QOS
bool "QoS library"
if QOS
config QOS_PENDING_MESSAGES_MAX
int "Maximum amount of pending messages"
default 10
config QOS_MESSAGE_NOTIFIED_COUNT_MAX
int "Maximum number of times to notify a message"
default 3
help
Number of times that a message will be notified before being discarded by the library.
config QOS_MESSAGE_NOTIFY_TIMEOUT_SECONDS
int "Notify timeout of unACKed messages"
default 16
help
How often the library will notify unACKed messages flagged with
QOS_FLAG_RELIABILITY_ACK_REQUIRED
module = QOS
module-str = QoS
source "subsys/logging/Kconfig.template.log_config"
endif # QOS