Skip to content

Commit bd7ac56

Browse files
authored
Merge branch 'master' into master
2 parents 006dcb9 + f957643 commit bd7ac56

Some content is hidden

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

46 files changed

+10927
-4921
lines changed

.github/workflows/full-android.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
name: Run
3434

3535
env:
36-
JAVA_HOME: /usr/lib/jvm/java-8-openjdk-amd64/
36+
JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/
3737

3838
runs-on: ubuntu-latest
3939
if: github.actor != 'restyled-io[bot]'
4040

4141
container:
42-
image: ghcr.io/project-chip/chip-build-android:104
42+
image: ghcr.io/project-chip/chip-build-android:106
4343
volumes:
4444
- "/tmp/log_output:/tmp/test_logs"
4545

.github/workflows/smoketest-android.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
name: Smoke Run - Android
3232

3333
env:
34-
JAVA_HOME: /usr/lib/jvm/java-8-openjdk-amd64/
34+
JAVA_HOME: /usr/lib/jvm/java-17-openjdk-amd64/
3535

3636
runs-on: ubuntu-latest
3737
if: github.actor != 'restyled-io[bot]'
3838

3939
container:
40-
image: ghcr.io/project-chip/chip-build-android:98
40+
image: ghcr.io/project-chip/chip-build-android:106
4141
volumes:
4242
- "/:/runner-root-volume"
4343
- "/tmp/log_output:/tmp/test_logs"

.github/workflows/tests.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,22 @@ jobs:
546546
scripts/run_in_python_env.sh out/venv 'src/python_testing/execute_python_tests.py --env-file /tmp/test_env.yaml --search-directory src/python_testing'
547547
scripts/run_in_python_env.sh out/venv 'scripts/tests/TestTimeSyncTrustedTimeSourceRunner.py --all-clusters out/linux-x64-all-clusters-ipv6only-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app'
548548
549+
- name: Execute Jupyter Notebooks
550+
run: |
551+
scripts/run_in_build_env.sh './scripts/build_python.sh --jupyter-lab --install_virtual_env out/venv'
552+
./scripts/run_in_build_env.sh \
553+
"./scripts/build/build_examples.py \
554+
--target linux-x64-all-clusters-ipv6only-no-ble-no-wifi-clang-test \
555+
build \
556+
--copy-artifacts-to objdir-clone \
557+
"
558+
scripts/run_in_python_env.sh out/venv \
559+
"jupyter execute docs/development_controllers/chip-repl/Matter_REPL_Intro.ipynb \
560+
docs/development_controllers/chip-repl/Matter_Basic_Interactions.ipynb \
561+
docs/development_controllers/chip-repl/Matter_Access_Control.ipynb \
562+
docs/development_controllers/chip-repl/Matter_Multi_Fabric_Commissioning.ipynb \
563+
"
564+
549565
- name: Uploading core files
550566
uses: actions/upload-artifact@v4
551567
if: ${{ failure() && !env.ACT }}

docs/development_controllers/chip-repl/Matter_Access_Control.ipynb

+510-405
Large diffs are not rendered by default.

docs/development_controllers/chip-repl/Matter_Basic_Interactions.ipynb

+6,325-2,898
Large diffs are not rendered by default.

docs/development_controllers/chip-repl/Matter_Multi_Fabric_Commissioning.ipynb

+563-479
Large diffs are not rendered by default.

docs/development_controllers/chip-repl/Matter_REPL_Intro.ipynb

+1,867-700
Large diffs are not rendered by default.

docs/development_controllers/chip-repl/python_chip_controller_building.md

+17-15
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ To build and run the Python CHIP controller:
103103
chip-repl
104104
```
105105
106+
NOTE: To get more verbose logs, pass the debug flag: `chip-repl --debug`
107+
106108
<hr>
107109
108110
## Using Python CHIP Controller REPL for Matter accessory testing
@@ -133,8 +135,8 @@ An uncommissioned accessory device advertises over Bluetooth LE or via mDNS if
133135
already on the network. Run the following command to scan all advertised Matter
134136
devices:
135137
136-
```
137-
devCtrl.DiscoverCommissionableNodes()
138+
```python
139+
await devCtrl.DiscoverCommissionableNodes()
138140
```
139141

140142
### Step 4: Set network pairing credentials
@@ -173,7 +175,7 @@ network interface, such as Thread or Wi-Fi.
173175
2. Set the previously obtained Active Operational Dataset as a byte array using
174176
the following command:
175177
176-
```
178+
```python
177179
thread_dataset = bytes.fromhex("0e080000000000010000000300001335060004001fffe002084fe76e9a8b5edaf50708fde46f999f0698e20510d47f5027a414ffeebaefa92285cc84fa030f4f70656e5468726561642d653439630102e49c0410b92f8c7fbb4f9f3e08492ee3915fbd2f0c0402a0fff8")
178180
devCtrl.SetThreadOperationalDataset(thread_dataset)
179181
```
@@ -183,7 +185,7 @@ network interface, such as Thread or Wi-Fi.
183185
Assuming your Wi-Fi SSID is _TESTSSID_, and your Wi-Fi password is _P455W4RD_,
184186
set the credentials to the controller by executing the following command:
185187
186-
```
188+
```python
187189
devCtrl.SetWiFiCredentials(<ssid>, <password>)
188190
```
189191

@@ -213,8 +215,8 @@ with the following assumptions for the Matter accessory device:
213215
- The setup pin code of the device is _20202021_
214216
- The temporary Node ID is _1234_
215217

216-
```
217-
devCtrl.ConnectBLE(3840, 20202021, 1234)
218+
```python
219+
await devCtrl.ConnectBLE(3840, 20202021, 1234)
218220
```
219221

220222
You can skip the last parameter, the Node ID, in the command. If you skip it,
@@ -230,8 +232,8 @@ CHIP:SVR: SetupQRCode: [MT:-24J0AFN00KA0648G00]
230232

231233
Use the following command to commission the device with the QR code:
232234

233-
```
234-
devCtrl.CommissionWithCode("MT:-24J0AFN00KA0648G00", 1234)
235+
```python
236+
await devCtrl.CommissionWithCode("MT:-24J0AFN00KA0648G00", 1234)
235237
```
236238

237239
After connecting the device over Bluetooth LE, the controller will go through
@@ -262,14 +264,14 @@ the following stages:
262264
For the light bulb example, execute the following command to toggle the LED
263265
state:
264266

265-
```
267+
```python
266268
await devCtrl.SendCommand(1234, 1, Clusters.OnOff.Commands.Toggle())
267269
```
268270

269271
To change the brightness of the LED, use the following command, with the level
270272
value somewhere between 0 and 255.
271273

272-
```
274+
```python
273275
commandToSend = LevelControl.Commands.MoveToLevel(level=50, transitionTime=Null, optionsMask=0, optionsOverride=0)
274276
await devCtrl.SendCommand(1234, 1, commandToSend)
275277
```
@@ -281,7 +283,7 @@ maintains collection of attributes that a controller can obtain from a device,
281283
such as the vendor name, the product name, or software version. Use
282284
`ReadAttribute()` command to read those values from the device:
283285

284-
```
286+
```python
285287
attributes = [
286288
(0, Clusters.BasicInformation.Attributes.VendorName),
287289
(0, Clusters.BasicInformation.Attributes.ProductName),
@@ -309,7 +311,7 @@ the full list of available commands.
309311
Provides the controller with Thread network credentials that will be used in the
310312
device commissioning procedure to configure the device with a Thread interface.
311313

312-
```
314+
```python
313315
thread_dataset = bytes.fromhex("0e080000000000010000000300001335060004001fffe002084fe76e9a8b5edaf50708fde46f999f0698e20510d47f5027a414ffeebaefa92285cc84fa030f4f70656e5468726561642d653439630102e49c0410b92f8c7fbb4f9f3e08492ee3915fbd2f0c0402a0fff8")
314316
devCtrl.SetThreadOperationalDataset(thread_dataset)
315317
```
@@ -319,7 +321,7 @@ devCtrl.SetThreadOperationalDataset(thread_dataset)
319321
Provides the controller with Wi-Fi network credentials that will be used in the
320322
device commissioning procedure to configure the device with a Wi-Fi interface.
321323

322-
```
324+
```python
323325
devCtrl.SetWiFiCredentials('TESTSSID', 'P455W4RD')
324326
```
325327

@@ -328,8 +330,8 @@ devCtrl.SetWiFiCredentials('TESTSSID', 'P455W4RD')
328330
Commission with the given nodeid from the setupPayload. setupPayload may be a QR
329331
or the manual setup code.
330332

331-
```
332-
devCtrl.CommissionWithCode("MT:-24J0AFN00KA0648G00", 1234)
333+
```python
334+
await devCtrl.CommissionWithCode("MT:-24J0AFN00KA0648G00", 1234)
333335
```
334336

335337
### `SendCommand(<nodeid>: int, <endpoint>: int, Clusters.<cluster>.Commands.<command>(<arguments>))`

docs/platforms/esp32/config_options.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@ CONFIG_LWIP_IPV4=n
1515
### Executable component not in "main" component
1616

1717
The ESP-IDF framework allows renaming the main component, which can be useful if
18-
you want to place the app_main() function in a different component.
18+
you want to place the `app_main()` function in a different component.
1919

2020
For required changes in the executable component, please refer to the
2121
[esp-idf documentation](https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/build-system.html#renaming-main-component).
2222

23-
If you're building applications that support Matter and want to place app_main()
24-
in a component other than main, use the following command:
25-
26-
```
27-
idf.py -DEXECUTABLE_COMPONENT_NAME="your_component" build
28-
```
23+
You need to list the required components in `idf_component_register()`. If this
24+
module contains Matter related code, you may need to include
25+
`chip, app_update, spi_flash, and nvs_flash` as `PRIV_REQUIRES`, along with any
26+
other necessary dependencies.

examples/android/CHIPTest/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "1.8.10"
3+
ext.kotlin_version = "2.0.0"
44
repositories {
55
google()
66
mavenCentral()
77
}
88
dependencies {
9-
classpath "com.android.tools.build:gradle:4.2.2"
9+
classpath "com.android.tools.build:gradle:7.1.3"
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111

1212
// NOTE: Do not place your application dependencies here; they belong

examples/android/CHIPTest/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77
# Specifies the JVM arguments used for the daemon process.
88
# The setting is particularly useful for tweaking memory settings.
9-
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
9+
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
1010
# When configured, Gradle will run in incubating parallel mode.
1111
# This option should only be used with decoupled projects. More details, visit
1212
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Aug 16 17:10:29 CST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

examples/android/CHIPTool/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = '1.8.10'
3+
ext.kotlin_version = '2.0.0'
44
repositories {
55
google()
66
mavenCentral()
77
}
88
dependencies {
9-
classpath "com.android.tools.build:gradle:4.2.0"
9+
classpath "com.android.tools.build:gradle:7.1.3"
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111

1212
// NOTE: Do not place your application dependencies here; they belong

examples/android/CHIPTool/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77
# Specifies the JVM arguments used for the daemon process.
88
# The setting is particularly useful for tweaking memory settings.
9-
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
9+
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
1010
# When configured, Gradle will run in incubating parallel mode.
1111
# This option should only be used with decoupled projects. More details, visit
1212
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

examples/chef/common/stubs.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -336,11 +336,11 @@ void emberAfWakeOnLanClusterInitCallback(EndpointId endpoint)
336336

337337
void ApplicationInit()
338338
{
339-
ChipLogProgress(NotSpecified, "Chef Application Init !!!")
339+
ChipLogProgress(NotSpecified, "Chef Application Init !!!");
340340

341341
#ifdef MATTER_DM_PLUGIN_REFRIGERATOR_ALARM_SERVER
342-
// set Parent Endpoint and Composition Type for an Endpoint
343-
EndpointId kRefEndpointId = 1;
342+
// set Parent Endpoint and Composition Type for an Endpoint
343+
EndpointId kRefEndpointId = 1;
344344
EndpointId kColdCabinetEndpointId = 2;
345345
EndpointId kFreezeCabinetEndpointId = 3;
346346
SetTreeCompositionForEndpoint(kRefEndpointId);
@@ -354,7 +354,7 @@ void ApplicationInit()
354354

355355
void ApplicationShutdown()
356356
{
357-
ChipLogProgress(NotSpecified, "Chef Application Down !!!")
357+
ChipLogProgress(NotSpecified, "Chef Application Down !!!");
358358
}
359359

360360
// No-op function, used to force linking this file,

examples/tv-app/android/App/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = '1.9.20'
3+
ext.kotlin_version = '2.0.0'
44
repositories {
55
google()
66
mavenCentral()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:4.2.2'
9+
classpath 'com.android.tools.build:gradle:7.1.3'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

examples/tv-app/android/App/gradle.properties

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77
# Specifies the JVM arguments used for the daemon process.
88
# The setting is particularly useful for tweaking memory settings.
9-
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
9+
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
1010
# When configured, Gradle will run in incubating parallel mode.
1111
# This option should only be used with decoupled projects. More details, visit
1212
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
@@ -24,4 +24,3 @@ matterSdkSourceBuild=false
2424
# example) to build SDK from source code and debug in Android Studio.
2525
# Set to blank to use the SDK prebuilt by scripts/build/build_examples.py.
2626
matterBuildSrcDir=out/android-arm64-chip-tvserver
27-
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Oct 26 11:10:18 CST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

examples/tv-casting-app/android/App/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:4.2.2'
8+
classpath 'com.android.tools.build:gradle:7.1.3'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files

examples/tv-casting-app/android/App/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77
# Specifies the JVM arguments used for the daemon process.
88
# The setting is particularly useful for tweaking memory settings.
9-
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
9+
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
1010
# When configured, Gradle will run in incubating parallel mode.
1111
# This option should only be used with decoupled projects. More details, visit
1212
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
106 : Upgrade android docker with java 17 and adjust the location for android cmdline tool
1+
107 : Tizen - do not mix snapshot and Tizen 8.0 release

integrations/docker/images/stage-2/chip-build-tizen/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ LABEL org.opencontainers.image.source https://github.com/project-chip/connectedh
77
RUN set -x \
88
&& apt-get update \
99
&& DEBIAN_FRONTEND=noninteractive apt-get install -fy --no-install-recommends \
10+
7zip \
1011
cpio \
1112
libncurses6 \
12-
obs-build \
1313
openjdk-8-jre-headless \
1414
wget \
1515
zip \

0 commit comments

Comments
 (0)