Skip to content

Commit 29ed589

Browse files
Sync csa branch with main (#241)
2 parents 9ae0505 + 22cd392 commit 29ed589

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

src/darwin/Framework/CHIPTests/MTRSetupPayloadTests.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ - (void)testDescriptionShowsUnknownDiscoveryMethods
439439
XCTAssertNotEqualObjects(a.description, b.description);
440440
}
441441

442-
- (uint32)generateRepeatedDigitPasscode:(uint8_t)digit
442+
- (uint32_t)generateRepeatedDigitPasscode:(uint8_t)digit
443443
{
444444
// "digit" is expected to be a single digit. Generates a number that has
445445
// that digit repeated 8 times.

src/platform/silabs/SiWx917/OTAImageProcessorImpl.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ extern "C" {
3636
#define RPS_HEADER 1
3737
#define RPS_DATA 2
3838

39-
#define SL_STATUS_FW_UPDATE_DONE SL_STATUS_SI91X_NO_AP_FOUND
4039
uint8_t flag = RPS_HEADER;
4140
static chip::OTAImageProcessorImpl gImageProcessor;
4241

@@ -186,13 +185,13 @@ void OTAImageProcessorImpl::HandleFinalize(intptr_t context)
186185

187186
if (status != SL_STATUS_OK)
188187
{
189-
if (status == SL_STATUS_FW_UPDATE_DONE)
188+
if (status == SL_STATUS_SI91X_FW_UPDATE_DONE)
190189
{
191190
mReset = true;
192191
}
193192
else
194193
{
195-
ChipLogError(SoftwareUpdate, "ERROR: In HandleFinalize for last chunk sl_si91x_fwup_load() error %ld", status);
194+
ChipLogError(SoftwareUpdate, "ERROR: In HandleFinalize for last chunk sl_si91x_fwup_load() error 0x%lx", status);
196195
imageProcessor->mDownloader->EndDownload(CHIP_ERROR_WRITE_FAILED);
197196
return;
198197
}
@@ -315,13 +314,13 @@ void OTAImageProcessorImpl::HandleProcessBlock(intptr_t context)
315314
{
316315
// If the last chunk of last block-writeBufOffset length is exactly kAlignmentBytes(64) bytes then mReset value
317316
// should be set to true in HandleProcessBlock
318-
if (status == SL_STATUS_FW_UPDATE_DONE)
317+
if (status == SL_STATUS_SI91X_FW_UPDATE_DONE)
319318
{
320319
mReset = true;
321320
}
322321
else
323322
{
324-
ChipLogError(SoftwareUpdate, "ERROR: In HandleProcessBlock sl_si91x_fwup_load() error %ld", status);
323+
ChipLogError(SoftwareUpdate, "ERROR: In HandleProcessBlock sl_si91x_fwup_load() error 0x%lx", status);
325324
imageProcessor->mDownloader->EndDownload(CHIP_ERROR_WRITE_FAILED);
326325
return;
327326
}

src/python_testing/TestSpecParsingSupport.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ def get_access_enum_from_string(access_str: str) -> Clusters.AccessControl.Enums
213213
' </revisionHistory>'
214214
' <clusterIds>'
215215
' <clusterId id="0xFFFE" name="Test Alias1"/>'
216-
' <clusterId id="0xFFFD" name="Test Alias2"/>'
216+
' <clusterId id="0xFFFD" name="Test Alias2">'
217+
' <provisionalConform/>'
218+
' </clusterId>'
217219
' </clusterIds>'
218220
' <classification hierarchy="base" role="application" picsCode="BASE" scope="Endpoint"/>'
219221
' <commands>'
@@ -396,6 +398,10 @@ def test_aliased_clusters(self):
396398
asserts.assert_true((0xFFFE, 'Test Alias1') in ids, "Unable to find Test Alias1 cluster in parsed clusters")
397399
asserts.assert_true((0xFFFD, 'Test Alias2') in ids, "Unable to find Test Alias2 cluster in parsed clusters")
398400

401+
# Test Alias2 is marked as provisional, and TestAlias1 is not
402+
asserts.assert_false(clusters[0xFFFE].is_provisional, "Test Alias1 is marked as provisional and should not be")
403+
asserts.assert_true(clusters[0xFFFD].is_provisional, "Test Alias2 is not marked as provisional and should be")
404+
399405
def test_known_aliased_clusters(self):
400406
known_aliased_clusters = set([(0x040C, 'Carbon Monoxide Concentration Measurement', 'CMOCONC'),
401407
(0x040D, 'Carbon Dioxide Concentration Measurement', 'CDOCONC'),

src/python_testing/matter_testing_infrastructure/chip/testing/spec_parsing.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,10 @@ def __init__(self, cluster: ElementTree.Element, cluster_id: Optional[uint], nam
228228
except (KeyError, StopIteration):
229229
self._derived = None
230230

231-
for id in cluster.iter('clusterIds'):
232-
if list(id.iter('provisionalConform')):
233-
self._is_provisional = True
231+
for ids in cluster.iter('clusterIds'):
232+
for id in ids.iter('clusterId'):
233+
if id.attrib['name'] == name and list(id.iter('provisionalConform')):
234+
self._is_provisional = True
234235

235236
self._pics: Optional[str] = None
236237
try:

0 commit comments

Comments
 (0)