1 parent a5e6fa8 commit c3c4326Copy full SHA for c3c4326
1 file changed
Kconfig.defconfig
@@ -6,13 +6,18 @@
6
7
if KNX_IOT_ADD_ON
8
9
-# Silence libknx logs. Level 4 (DBG) is only in range when KNXIOT_DEBUG is set,
10
-# and level 0 keeps the stack's OC_PRINT output out of the build entirely.
11
config KNXIOT_DEBUG
12
default y if KNX_VERBOSE_STACK_LOGS
13
14
config KNXIOT_LOG_LEVEL
15
default 4 if KNX_VERBOSE_STACK_LOGS
16
default 0
17
+# Openthread implementation uses only a single socket
+# The default value of 0, makes the socket bind to a ephemeral port
18
+# This leads to a mismatch between ports, setting it to 5683 (CoAP port)
19
+# Allows the device to receive the messages
20
+config KNX_UNICAST_PORT
21
+ default 5683
22
+
23
endif # KNX_IOT_ADD_ON
0 commit comments