Skip to content

Commit 80ae5fe

Browse files
[SL-ONLY] Rename ZclCallbacks to DataModelCallbacks for silabs specif… (#643)
1 parent 31d446e commit 80ae5fe

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/template/silabs/BUILD.gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ silabs_executable("template_app") {
123123
sources = [
124124
"${examples_common_plat_dir}/main.cpp",
125125
"src/AppTask.cpp",
126-
"src/ZclCallbacks.cpp",
126+
"src/DataModelCallbacks.cpp",
127127
]
128128

129129
deps = [

examples/template/silabs/HOW_TO_CREATE_A_CUSTOM_APP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,6 @@ Lighting-app's [README](../../../examples/lighting-app/efr32/README.md).
218218
[4]: ../../../third_party/zap/repo/README.md
219219
[5]: ../../../
220220
[6]: #Modifying-the-GN-Build-files
221-
[7]: src/ZclCallbacks.cpp
221+
[7]: src/DataModelCallbacks.cpp
222222
[8]: ../../sl-newLight/efr32/src/
223223
[9]: ../../sl-newLight/efr32/README.md

examples/template/silabs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ sends them to the corresponding _handler_.
3636
### Receiving Matter commands
3737

3838
All Matter commands reach the application through the intermediate of the
39-
function [MatterPostAttributeChangeCallback()](src/ZclCallbacks.cpp). Modify
40-
this function to forward the commands it receives to a _function_ of your
39+
function [MatterPostAttributeChangeCallback()](src/DataModelCallbacks.cpp).
40+
Modify this function to forward the commands it receives to a _function_ of your
4141
choosing. This _function_ should implement the behavior you desire in response
4242
to these commands.
4343

0 commit comments

Comments
 (0)