forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsdkconfig_pdc.defaults
More file actions
41 lines (37 loc) · 1.72 KB
/
Copy pathsdkconfig_pdc.defaults
File metadata and controls
41 lines (37 loc) · 1.72 KB
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
34
35
36
37
38
39
40
41
#
# Copyright (c) 2026 Project CHIP Authors
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Description:
# Overlay enabling Per-Device Credentials. Apply on top of another defaults
# file, e.g.
# idf.py -D 'SDKCONFIG_DEFAULTS=sdkconfig.defaults;sdkconfig_pdc.defaults' reconfigure
#
CONFIG_ENABLE_WIFI_PDC=y
# PDC associates with the AP using EAP-TLS over WPA3-Enterprise.
CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT=y
CONFIG_ESP_WIFI_MBEDTLS_TLS_CLIENT=y
# Matter requires EAP-TLS 1.3 (RFC 9190). ESP-IDF still considers this experimental, and the
# option makes every TLS user in the application prefer 1.3, not just the supplicant.
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
CONFIG_ESP_WIFI_EAP_TLS1_3=y
# Supplicant debug logging, while PDC association is still being brought up. The Kconfig option
# only compiles the wpa_printf() calls in; ESPWiFiDriver::Init() raises the "wpa" tag to DEBUG at
# runtime, which needs the compile-time ceiling lifted off INFO as well. Comment all three out to
# get the ~60 kB and the serial bandwidth back.
CONFIG_ESP_WIFI_DEBUG_PRINT=y
# CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT is not set
CONFIG_LOG_MAXIMUM_LEVEL_DEBUG=y
CONFIG_ESP_CONSOLE_UART_BAUDRATE=921600