forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TBD update-matter-repo.py script run from Apple extensions
- Loading branch information
1 parent
fdc8a0b
commit 6705728
Showing
14 changed files
with
817 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/app/clusters/apple-device-information-server/apple-device-information-server.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
* Copyright (c) 2023 Apple Inc. All rights reserved. | ||
* | ||
* Apple Matter Extensions is licensed under Apple Inc.'s MFi Sample Code | ||
* License Agreement, which is contained in the LICENSE file distributed with | ||
* the Apple Matter Extensions, and only to those who accept that license. | ||
*/ | ||
|
||
void MatterAppleDeviceInformationPluginServerInitCallback() | ||
{ | ||
} |
25 changes: 25 additions & 0 deletions
25
src/app/zap-templates/zcl/data-model/apple/apple-device-information-cluster.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Copyright (c) 2023 Apple Inc. All rights reserved. | ||
Apple Matter Extensions is licensed under Apple Inc.'s MFi Sample Code | ||
License Agreement, which is contained in the LICENSE file distributed with | ||
the Apple Matter Extensions, and only to those who accept that license. | ||
--> | ||
<configurator> | ||
<domain name="CHIP"/> | ||
|
||
<cluster> | ||
<name>Apple Device Information</name> | ||
<domain>CHIP</domain> | ||
<code>0x1349FC00</code> | ||
<define>APPLE_DEVICE_INFORMATION_CLUSTER</define> | ||
<description>This cluster provides Apple-specific information about the device.</description> | ||
<globalAttribute side="either" code="0xFFFD" value="1"/> | ||
|
||
<!-- Whether this device supports tap to unlock. --> | ||
<attribute side="server" code="0x0000" define="SUPPORTS_TAP_TO_UNLOCK" type="boolean" optional="true">SupportsTapToUnlock</attribute> | ||
<attribute side="server" code="0x0001" define="SUPPORTS_WED" type="boolean" optional="true">SupportsWED</attribute> | ||
|
||
</cluster> | ||
</configurator> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.