@@ -19,6 +19,9 @@ Fabric-Bridge-App example app implements the Aggregator device type with Fabric
19
19
Synchronization condition met and demonstrates the end-to-end Fabric
20
20
Synchronization feature using dynamic endpoints.
21
21
22
+ The Fabric-Admin and Fabric-Bridge-App example applications must be executed on
23
+ the same physical device and communicate with each other using RPC.
24
+
22
25
Fabric Synchronization can be triggered from either side. The initiator of the
23
26
Fabric Synchronization process, who shares their devices, takes on the
24
27
Commissioner role. The recipient of the Fabric Synchronization request, who
@@ -82,11 +85,29 @@ fabricsync enable-auto-sync 1
82
85
Pair the Fabric-Source bridge to Fabric-Sync with node ID 1:
83
86
84
87
```
85
- fabricsync add-bridge 1 <fabric-sink -ip>
88
+ fabricsync add-bridge 1 <fabric-source-bridge -ip>
86
89
```
87
90
88
91
### Pair Light Example to Fabric-Source
89
92
93
+ Since Fabric-Bridge also functions as a Matter server, running it alongside the
94
+ Light Example app on the same machine would cause conflicts. Therefore, you need
95
+ to run the Matter Light Example app on a separate physical machine from the one
96
+ hosting Fabric-Admin and Fabric-Bridge. You can then commission the Matter Light
97
+ Example app using Fabric-Admin on the source side.
98
+
99
+ There is a workaround to avoid conflicts when running multiple Matter server
100
+ applications on the same machine, you can use different ports and unique
101
+ Key-Value Store (KVS) paths for each app. Here's an example of how to launch a
102
+ Light App with custom settings:
103
+
104
+ Light App with yet another set of different discriminator/passcode, ports and
105
+ KVS
106
+
107
+ ```
108
+ ./out/linux-x64-light-clang/chip-lighting-app --discriminator 3843 --passcode 20202023 --secured-device-port 5543 --unsecured-commissioner-port 5553 --KVS /tmp/chip_kvs_lighting_app
109
+ ```
110
+
90
111
Pair the Light Example with node ID 3 using its payload number:
91
112
92
113
```
0 commit comments