Skip to content

Commit 4eba4d6

Browse files
[Linux] Initial implementation of fabric-bridge for fabric sync (#33284)
* Initial implementation of fabric-bridge * Update examples/fabric-bridge-app/linux/ActionsServerCallbacks.cpp Co-authored-by: Boris Zbarsky <bzbarsky@apple.com> * Address review comments * Use a maximum number of retries to exit the loop more reliably * Remove unused varibles --------- Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
1 parent 408eaf6 commit 4eba4d6

File tree

16 files changed

+6808
-0
lines changed

16 files changed

+6808
-0
lines changed

docs/examples/index.md

+9
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ darwin-framework-tool/README
8585
energy-management-app/**/README
8686
```
8787

88+
## Fabric Bridge example
89+
90+
```{toctree}
91+
:glob:
92+
:maxdepth: 1
93+
94+
fabric-bridge-app/**/README
95+
```
96+
8897
## Java matter controller example
8998

9099
```{toctree}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright (c) 2024 Project CHIP Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
import("//build_overrides/chip.gni")
16+
17+
import("${chip_root}/src/app/chip_data_model.gni")
18+
19+
chip_data_model("fabric-bridge-common") {
20+
zap_file = "fabric-bridge-app.zap"
21+
22+
is_server = true
23+
24+
cflags = [ "-DDYNAMIC_ENDPOINT_COUNT=16" ]
25+
}

0 commit comments

Comments
 (0)