Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync csa branch with main #365

Merged
merged 23 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
30bed7a
[Tizen] Modify dnssd resolve operation process (#37003)
hyunuktak Mar 20, 2025
d9dc875
[Telink] Update Docker image (Zephyr update) (#37982)
s07641069 Mar 20, 2025
5b3021b
esp32: fix build for esp32p4 (#38066)
wqx6 Mar 20, 2025
4a97585
Add Alchemy generated files for TemperatureMeasurement cluster (#38060)
tersal Mar 20, 2025
e1ea4c6
[SILABS] Adds support for WiFi band details (#38051)
rosahay-silabs Mar 20, 2025
c9188a5
devcontainers: Reduce maintenance workload, optimize docker build (#3…
enkiusz Mar 20, 2025
168ad35
Bump tj-actions/changed-files from 45 to 46 (#38029)
dependabot[bot] Mar 20, 2025
830bf53
[Telink] Add OTA resume support (#37978)
s07641069 Mar 20, 2025
e4e7683
Generate IlluminanceMeasurement cluster using Alchemy (#37935)
tersal Mar 20, 2025
2489811
Generate files for LaundryDryerControl using Alchemy (#37912)
tersal Mar 20, 2025
3f1fb93
[Tizen] Add arm64 target - Docker part (#37761)
XToripuru Mar 20, 2025
e796147
Extract decorator utilities from matter_testing.py into separate mod…
asirko-soft Mar 20, 2025
cbf664f
Generate EnergyPreference cluster with Alchemy (#38063)
tersal Mar 20, 2025
5b1d9f2
[Scenes] LastConfiguredBy Removal (#38003)
lpbeliveau-silabs Mar 21, 2025
fece770
[Realtek] First porting Bee4 (#37005)
pankore Mar 21, 2025
6bc9633
[Silabs] Refactor WifiSleepManager dependecies to enable unit-tests (…
mkardous-silabs Mar 21, 2025
6cef5da
Update and regen realtek_bee/data_model/lighting-app.zap (#38077)
jmartinez-silabs Mar 21, 2025
af19062
[Chef] update chef force check-in command with shutdown all subs (#38…
yunhanw-google Mar 21, 2025
bdc569b
Adding the level control to light switch and changing to dimmer switc…
chirag-silabs Mar 22, 2025
ad92562
Use a reference to the context on ServerClusterInterface::Startup (#3…
andy31415 Mar 22, 2025
6ac6309
Merge branch 'main' into automation/update_main
mkardous-silabs Mar 24, 2025
97e9b56
[SL-ONLY] Update WifiSleepManager to fix mergle conflicts
mkardous-silabs Mar 24, 2025
a0be7ec
[SL-ONLY] Update silabs examples zap generation
mkardous-silabs Mar 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
21 changes: 8 additions & 13 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,23 +56,18 @@ RUN curl https://raw.githubusercontent.com/restyled-io/restyler/master/bin/resty

RUN mkdir -p /opt/android/sdk \
&& chown -R $USERNAME:$USERNAME \
/opt/android/sdk `# NXP uses a patch_sdk script to change SDK files` \
$ANDROID_HOME \
$IDF_TOOLS_PATH \
&& find $AMEBA_PATH -name "inc_lp" -print0 | xargs -0 chown -R $USERNAME:$USERNAME \
&& find $AMEBA_PATH -name "inc_hp" -print0 | xargs -0 chown -R $USERNAME:$USERNAME \
&& find $AMEBA_PATH -name "project_lp" -print0 | xargs -0 chown -R $USERNAME:$USERNAME \
&& find $AMEBA_PATH -name "project_hp" -print0 | xargs -0 chown -R $USERNAME:$USERNAME \
&& chmod -R +x \
$ANDROID_HOME/cmdline-tools/10.0/bin `# sdkmanager for accepting licenses`\
&& find $AMEBA_PATH \
-name "inc_lp" -print0 -or \
-name "inc_hp" -print0 -or \
-name "project_lp" -print0 -or \
-name "project_hp" -print0 \
| xargs -0 -I {} sh -c 'chown -R $USERNAME:$USERNAME {}; chmod -R +w {}' \
&& find $ANDROID_HOME/cmdline-tools/ -type d -name bin | xargs chmod -R +x `# sdkmanager for accepting licenses` \
&& chmod -R +w \
$IDF_TOOLS_PATH \
&& find $AMEBA_PATH -name "inc_lp" -print0 | xargs -0 chmod -R +w \
&& find $AMEBA_PATH -name "inc_hp" -print0 | xargs -0 chmod -R +w \
&& find $AMEBA_PATH -name "project_lp" -print0 | xargs -0 chmod -R +w \
&& find $AMEBA_PATH -name "project_hp" -print0 | xargs -0 chmod -R +w \
# Safe directory is preferred over chown.
&& git config --global --add safe.directory "*" \
&& git config --global --add safe.directory "*" `# Safe directory is preferred over chown.` \
&& :

# Fix Tizen SDK paths for new user
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

HERE="$(dirname "$0")"
CHIP_ROOT="$(realpath "$HERE"/..)"
BUILD_VERSION="latest"
BUILD_VERSION=$(sed 's/ .*//' "$CHIP_ROOT/integrations/docker/images/base/chip-build/version")
IMAGE_TAG="matter-dev-environment:local"
USER_UID=$UID

Expand All @@ -32,7 +32,7 @@ Options:
-h,--help Show this help
-t,--tag Image tag - default is matter-dev-environment:local
-u,--uid User UIDa - default is the current user ID
-v,--version Build version - default is the latest
-v,--version Build version - default is the version of the base chip-build docker image
EOF
}

Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"type": "bind"
}
],
"initializeCommand": "bash .devcontainer/build.sh --tag matter-dev-environment:local --version 97",
"initializeCommand": "bash .devcontainer/build.sh",
"image": "matter-dev-environment:local",
"remoteUser": "vscode",
"containerEnv": {
Expand Down
1 change: 1 addition & 0 deletions .github/.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1201,6 +1201,7 @@ READMEs
readonly
readthedocs
Reag
Realtek
rebase
recommand
recommanded
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ jobs:
./scripts/run_in_build_env.sh "./scripts/run_codegen_targets.sh out/sanitizers"
- name: Find changed files
id: changed-files
uses: tj-actions/changed-files@v45
uses: tj-actions/changed-files@v46
with:
# Exclude all files under "third_party/"
files-ignore: |
Expand Down Expand Up @@ -446,7 +446,7 @@ jobs:
./scripts/run_in_build_env.sh "./scripts/run_codegen_targets.sh out/default"
- name: Find changed files
id: changed-files
uses: tj-actions/changed-files@v45
uses: tj-actions/changed-files@v46
- name: Clang-tidy validation
# NOTE: clang-tidy crashes on CodegenDataModel_Write due to Nullable/std::optional check.
# See https://github.com/llvm/llvm-project/issues/97426
Expand Down
6 changes: 5 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
path = third_party/freertos/repo
url = https://github.com/FreeRTOS/FreeRTOS-Kernel.git
branch = V10.3.1-kernel-only
platforms = ameba,cc13xx_26xx,bouffalolab,esp32,infineon,qpg,cc32xx
platforms = ameba,cc13xx_26xx,bouffalolab,esp32,infineon,qpg,cc32xx,realtek_bee
[submodule "simw-top-mini"]
path = third_party/simw-top-mini/repo
url = https://github.com/NXP/plug-and-trust.git
Expand Down Expand Up @@ -354,3 +354,7 @@
url = https://github.com/paullouisageneau/libdatachannel.git
platforms = linux
recursive = true
[submodule "third_party/openthread/ot-realtek"]
path = third_party/openthread/ot-realtek
url = https://github.com/rtkconnectivity/ot-realtek.git
platforms = realtek_bee
18 changes: 18 additions & 0 deletions build_overrides/bee_sdk.gni
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright (c) 2020-2021 Project CHIP Authors
#
# 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.

declare_args() {
# Root directory for Bee SDK.
bee_sdk_build_root = "//third_party/bee_sdk"
}
2 changes: 1 addition & 1 deletion config/esp32/components/chip/idf_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ dependencies:
- if: "idf_version >=4.3"

espressif/esp_wifi_remote:
version: ">=0.1.12"
version: "^0.7.0"
rules:
- if: "target in [esp32p4]"
28 changes: 28 additions & 0 deletions config/realtek_bee/.gn
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright (c) 2020 Project CHIP Authors
#
# 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.

import("//build_overrides/build.gni")

# The location of the build configuration file.
buildconfig = "${build_root}/config/BUILDCONFIG.gn"

# CHIP uses angle bracket includes.
check_system_includes = true

default_args = {
target_cpu = "arm"
target_os = "freertos"

import("//args.gni")
}
37 changes: 37 additions & 0 deletions config/realtek_bee/BUILD.gn
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright (c) 2020 Project CHIP Authors
#
# 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.

# Options from standalone-chip.mk that differ from configure defaults. These
# options are used from examples/.

import("//build_overrides/build.gni")
import("//build_overrides/chip.gni")

import("${chip_root}/build/chip/tests.gni")

declare_args() {
chip_build_pw_rpc_lib = false
}

group("realtek_bee") {
deps = [ "${chip_root}/src/lib" ]

if (chip_build_pw_rpc_lib) {
deps += [ "//lib/pw_rpc" ]
}

if (chip_build_tests) {
deps += [ "${chip_root}/src:tests" ]
}
}
48 changes: 48 additions & 0 deletions config/realtek_bee/args.gni
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Copyright (c) 2020 Project CHIP Authors
#
# 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.

# Options from standalone-chip.mk that differ from configure defaults. These
# options are used from examples/.

import("//build_overrides/chip.gni")
import("//build_overrides/pigweed.gni")

chip_device_platform = "realtek_bee"

# ARM architecture flags will be set for Bee
arm_platform_config = "${chip_root}/config/realtek_bee/bee_arm.gni"

chip_project_config_include = ""
chip_system_project_config_include = ""
chip_ble_project_config_include = ""

mbedtls_target = "//mbedtls:mbedtls"
lwip_platform = "external"

chip_build_tests = false

chip_enable_openthread = true

chip_inet_config_enable_ipv4 = false
chip_inet_config_enable_tcp_endpoint = false
chip_enable_nfc_onboarding_payload = false
chip_build_libshell = false
chip_enable_ota_requestor = false

openthread_root = ""

chip_config_network_layer_ble = true

custom_toolchain =
"//third_party/connectedhomeip/config/realtek_bee/toolchain:realtek_bee"
17 changes: 17 additions & 0 deletions config/realtek_bee/bee_arm.gni
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright (c) 2020 Project CHIP Authors
#
# 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.

arm_arch = "armv8.1-m.main+dsp+mve+fp"

arm_float_abi = "hard"
1 change: 1 addition & 0 deletions config/realtek_bee/build
1 change: 1 addition & 0 deletions config/realtek_bee/build_overrides
Loading
Loading