Skip to content

Commit 144c95c

Browse files
authored
Merge branch 'master' into pr/av-analysis-core-logic
2 parents c013f51 + fc18ade commit 144c95c

318 files changed

Lines changed: 9942 additions & 1106 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/.wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1496,6 +1496,7 @@ subtypes
14961496
sudo
14971497
SulfateConcentrationMeasurement
14981498
SulfurDioxideConcentrationMeasurement
1499+
superset
14991500
suppressResponse
15001501
svg
15011502
SVR

.github/workflows/issue-labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
triage:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: github/issue-labeler@v3.4 #May not be the latest version
14+
- uses: github/issue-labeler@v3.5 #May not be the latest version
1515
with:
1616
configuration-path: .github/issue-labeler.yml
1717
not-before: 2020-01-15T02:54:34Z

.github/workflows/restyled.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1616

17-
- uses: restyled-io/actions/setup@67eaade33e75b529818c2e07c506ad29c2c1d776 # v4
17+
- uses: restyled-io/actions/setup@8467a405c8fafe4dff2f3c341e37b56bd1703c89 # v4
1818

1919
- id: restyler
20-
uses: restyled-io/actions/run@67eaade33e75b529818c2e07c506ad29c2c1d776 # v4
20+
uses: restyled-io/actions/run@8467a405c8fafe4dff2f3c341e37b56bd1703c89 # v4
2121

2222
- name: Save restyle patch
2323
if: ${{ steps.restyler.outputs.git-patch }}

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
platforms = esp32
2323
[submodule "pigweed"]
2424
path = third_party/pigweed/repo
25-
url = https://github.com/google/pigweed.git
25+
url = https://github.com/pigweed-project/pigweed.git
2626
branch = main
2727
[submodule "openthread"]
2828
path = third_party/openthread/repo

.pullapprove.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,14 @@ groups:
175175
teams: [reviewers-lg]
176176
reviews:
177177
request: 0 # Do not auto-add
178+
shared-reviewers-morsemicro:
179+
type: optional
180+
conditions:
181+
- files.include('*')
182+
reviewers:
183+
teams: [reviewers-morsemicro]
184+
reviews:
185+
request: 0 # Do not auto-add
178186
shared-reviewers-nordic:
179187
type: optional
180188
conditions:

config/common/cmake/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,13 @@ config CHIP_WIFI_CONNECTION_RECOVERY_JITTER
698698
a random jitter interval is added to it to avoid periodicity. The random jitter is selected
699699
within a range of +/- the value of this option.
700700

701+
config CHIP_WIFI_PAF
702+
bool "Enable Wi-Fi with PAFTP support"
703+
depends on CHIP_WIFI
704+
help
705+
Enable PAFTP (Public Action Frame Transport Protocol) support for Matter-over-Wi-Fi devices.
706+
This allows the device to use Wi-Fi Aware (NAN) for commissioning and service discovery.
707+
701708
# Platform additions and configuration
702709

703710
config CHIP_SYSTEM_THREAD_LOCAL_STORAGE

config/common/cmake/chip_gn_kconfig_defaults.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ matter_add_gn_arg_bool("chip_enable_ota_requestor" CONFIG_CHIP_OTA_REQUESTOR)
4242
matter_add_gn_arg_bool("chip_crypto_psa_aead_single_part" CONFIG_CHIP_CRYPTO_PSA_AEAD_SINGLE_PART)
4343
matter_add_gn_arg_bool("chip_enable_read_client" CONFIG_CHIP_ENABLE_READ_CLIENT)
4444
matter_add_gn_arg_bool("chip_config_enable_groupcast" CONFIG_CHIP_ENABLE_GROUPCAST)
45+
matter_add_gn_arg_bool("chip_device_config_enable_wifipaf" CONFIG_CHIP_WIFI_PAF)
4546

4647
# Allows to set chip_stack_lock_tracking level
4748
# Required in case default value needs to be set to "none" for optimization

config/nrfconnect/chip-module/Kconfig.defaults

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ config SYSTEM_WORKQUEUE_STACK_SIZE
5858
default 2560 if CHIP_WIFI
5959
default 2048 if CHIP_ICD_LIT_SUPPORT
6060

61+
config NET_MGMT_EVENT_STACK_SIZE
62+
default 2048 if CHIP_WIFI_PAF
63+
default 1024
64+
6165
if CHIP_WIFI
6266

6367
config HEAP_MEM_POOL_SIZE

config/nxp/chip-module/Kconfig.defaults

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ config INIT_STACKS
203203
default y
204204

205205
config NET_MGMT_EVENT_STACK_SIZE
206+
default 2048 if CHIP_WIFI_PAF
206207
default 1024
207208

208209
config NET_MGMT_EVENT_QUEUE_SIZE

config/zephyr/Kconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ config CHIP_CRYPTO_PSA
9999
imply PSA_WANT_ALG_HMAC
100100
imply PSA_WANT_ALG_ECDSA
101101

102+
config CHIP_WIFI_PAF
103+
imply WIFI_NM_WPA_SUPPLICANT_NAN if WIFI_NM_WPA_SUPPLICANT
104+
102105
config CHIP_FACTORY_RESET_ERASE_SETTINGS
103106
depends on SETTINGS_NVS || SETTINGS_ZMS
104107

0 commit comments

Comments
 (0)