Skip to content

Commit

Permalink
Update WiFi SoftAP and BLE Device Name prefix to MATTER- (#7495)
Browse files Browse the repository at this point in the history
  • Loading branch information
aronrosenberg authored and pull[bot] committed Jul 26, 2021
1 parent 05cf195 commit 1675140
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/esp32/components/chip/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/include/platform/CHIPDeviceConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

/**
Expand Down Expand Up @@ -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

/**
Expand Down

0 comments on commit 1675140

Please sign in to comment.