diff --git a/config/esp32/components/chip/Kconfig b/config/esp32/components/chip/Kconfig index 19d825fe1dd665..bd66ea155753c0 100644 --- a/config/esp32/components/chip/Kconfig +++ b/config/esp32/components/chip/Kconfig @@ -460,7 +460,7 @@ menu "CHIP Device Layer" config WIFI_AP_SSID_PREFIX string "WiFi AP SSID Prefix" - default "CHIP-" + default "MATTER-" help A prefix string used in forming the WiFi soft-AP SSID. The remainder of the SSID consists of the final two bytes of the device's primary WiFi MAC address in hex. @@ -510,7 +510,7 @@ menu "CHIP Device Layer" config BLE_DEVICE_NAME_PREFIX string "BLE Device Name Prefix" - default "CHIP-" + default "MATTER-" depends on ENABLE_CHIPOBLE help A prefix string used in forming the BLE device name. The remainder of the name diff --git a/src/include/platform/CHIPDeviceConfig.h b/src/include/platform/CHIPDeviceConfig.h index 8a7c154439f59b..0033783c44df6b 100644 --- a/src/include/platform/CHIPDeviceConfig.h +++ b/src/include/platform/CHIPDeviceConfig.h @@ -307,7 +307,7 @@ * consists of the final two bytes of the device's primary WiFi MAC address in hex. */ #ifndef CHIP_DEVICE_CONFIG_WIFI_AP_SSID_PREFIX -#define CHIP_DEVICE_CONFIG_WIFI_AP_SSID_PREFIX "CHIP-" +#define CHIP_DEVICE_CONFIG_WIFI_AP_SSID_PREFIX "MATTER-" #endif /** @@ -424,7 +424,7 @@ * may need to be shorter. */ #ifndef CHIP_DEVICE_CONFIG_BLE_DEVICE_NAME_PREFIX -#define CHIP_DEVICE_CONFIG_BLE_DEVICE_NAME_PREFIX "CHIP-" +#define CHIP_DEVICE_CONFIG_BLE_DEVICE_NAME_PREFIX "MATTER-" #endif /**