Skip to content

Commit 06a421e

Browse files
Fix signatures of string-attribute getters in Accessors.h/cpp. (#29029)
The old signature did not propagate the update length of the span to the caller. This is a manual backport of #29024. The ZAP update is needed to get the right output. This modifies a few things, which were included in the PR so that the ZAP job would pass. The Darwin bits might not compile in this state, but that's OK.
1 parent eb23187 commit 06a421e

File tree

28 files changed

+58638
-29184
lines changed

28 files changed

+58638
-29184
lines changed

examples/lighting-app/bouffalolab/data_model/lighting-app-thread.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -2102,7 +2102,7 @@ endpoint 0 {
21022102
}
21032103
}
21042104
endpoint 1 {
2105-
device type extendedcolorlight = 269, version 1;
2105+
device type extendedcolorlight = 257, version 1;
21062106

21072107
server cluster Identify {
21082108
ram attribute identifyTime default = 0x0000;

examples/lighting-app/bouffalolab/data_model/lighting-app-wifi.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1963,7 +1963,7 @@ endpoint 0 {
19631963
}
19641964
}
19651965
endpoint 1 {
1966-
device type extendedcolorlight = 269, version 1;
1966+
device type extendedcolorlight = 257, version 1;
19671967

19681968
server cluster Identify {
19691969
ram attribute identifyTime default = 0x0000;

examples/log-source-app/log-source-common/log-source-app.matter

+1
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,7 @@ server cluster OperationalCredentials = 62 {
475475
}
476476

477477
endpoint 0 {
478+
device type anonymousEndpointType = 0, version 1;
478479
binding cluster DiagnosticLogs;
479480

480481
server cluster AccessControl {

examples/placeholder/linux/apps/app1/config.matter

-1
Original file line numberDiff line numberDiff line change
@@ -3391,7 +3391,6 @@ server cluster ApplicationBasic = 1293 {
33913391
}
33923392

33933393
endpoint 0 {
3394-
device type anonymousEndpointType = 65280, version 1;
33953394
binding cluster OnOff;
33963395
binding cluster GeneralCommissioning;
33973396
binding cluster Switch;

examples/placeholder/linux/apps/app2/config.matter

-1
Original file line numberDiff line numberDiff line change
@@ -3352,7 +3352,6 @@ server cluster ApplicationBasic = 1293 {
33523352
}
33533353

33543354
endpoint 0 {
3355-
device type anonymousEndpointType = 65280, version 1;
33563355
binding cluster OnOff;
33573356
binding cluster GeneralCommissioning;
33583357
binding cluster Switch;

integrations/docker/images/chip-cert-bins/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG COMMITHASH=7b99e6399c6069037c613782d78132c69b9dcabb
77
# ZAP Development install, so that it runs on both x64 and arm64
88
# Generally this should match with the ZAP version that is used for codegen within the
99
# specified SHA
10-
ARG ZAP_VERSION=v2023.04.27-nightly
10+
ARG ZAP_VERSION=v2023.09.01-nightly
1111

1212
# Ensure TARGETPLATFORM is set
1313
RUN case ${TARGETPLATFORM} in \

scripts/setup/zap.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"mac-arm64",
99
"windows-amd64"
1010
],
11-
"tags": ["version:2@v2023.04.27-nightly.1"]
11+
"tags": ["version:2@v2023.09.01-nightly.1"]
1212
}
1313
]
1414
}

scripts/tools/zap/zap_execution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Use scripts/tools/zap/version_update.py to manage ZAP versioning as many
2424
# files may need updating for versions
2525
#
26-
MIN_ZAP_VERSION = '2023.4.27'
26+
MIN_ZAP_VERSION = '2023.9.1'
2727

2828

2929
class ZapTool:

src/darwin/Framework/CHIP/MTRDefines.h

+6
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
#define MTR_NEWLY_AVAILABLE
5252
#endif
5353

54+
#if defined(MTR_ENABLE_PROVISIONAL) && MTR_ENABLE_PROVISIONAL
55+
#define MTR_PROVISIONALLY_AVAILABLE MTR_NEWLY_AVAILABLE
56+
#else
57+
#define MTR_PROVISIONALLY_AVAILABLE NS_UNAVAILABLE MTR_HIDDEN
58+
#endif
59+
5460
#pragma mark - Types
5561

5662
typedef NSData * MTRTLVBytes;

0 commit comments

Comments
 (0)