Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial closure sample app for 917SoC #37752

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f997321
Basic closure sample app with closure control server
satyanaag-silabs Feb 24, 2025
df4a36d
Adding README file and renaming callback file
satyanaag-silabs Feb 25, 2025
299fc8e
Restyled by whitespace
restyled-commits Feb 25, 2025
0174cec
Restyled by clang-format
restyled-commits Feb 25, 2025
2233200
Restyled by gn
restyled-commits Feb 25, 2025
d03df1c
Restyled by prettier-json
restyled-commits Feb 25, 2025
155733d
Restyled by prettier-markdown
restyled-commits Feb 25, 2025
b18e61a
Updating sample app as per server code changes
satyanaag-silabs Feb 26, 2025
c024959
addressing PR comments
satyanaag-silabs Feb 26, 2025
3cea44b
Adding closure README to docs
satyanaag-silabs Feb 26, 2025
3bfa214
enabling lcd and qrcode generation in lcd
satyanaag-silabs Feb 27, 2025
7e48959
removing unintended tab changes and default values added during rebase
satyanaag-silabs Feb 27, 2025
41b89bd
Merge branch 'master' into feature/closure_control_sample_app_917
sabollim-silabs Feb 27, 2025
a69d9b3
Merge branch 'master' into feature/closure_control_sample_app_917
sabollim-silabs Feb 27, 2025
882e687
Merge branch 'master' into feature/closure_control_sample_app_917
sabollim-silabs Feb 27, 2025
06ac49b
Addressing PR comments
satyanaag-silabs Feb 27, 2025
bed22ed
Update examples/closure-app/closure-common/closure-control/src/Closur…
sabollim-silabs Mar 1, 2025
f00aa25
Merge branch 'master' into feature/closure_control_sample_app_917
sabollim-silabs Mar 1, 2025
01c2914
addressing PR comments
satyanaag-silabs Mar 1, 2025
4afa175
Restyled by whitespace
restyled-commits Mar 1, 2025
fcd3d00
Restyled by prettier-markdown
restyled-commits Mar 1, 2025
ecfc2d4
corecting lint workflow identified errors
satyanaag-silabs Mar 1, 2025
71b9bc3
corecting lint workflow identified errors
satyanaag-silabs Mar 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/examples/closure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Closure

```{toctree}
:glob:
:maxdepth: 1

closure-app/**/README
```
26 changes: 26 additions & 0 deletions examples/closure-app/closure-common/BUILD.gn
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright (c) 2025 Project CHIP Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import("//build_overrides/chip.gni")
import("${chip_root}/examples/common/pigweed/pigweed_rpcs.gni")
import("${chip_root}/src/app/chip_data_model.gni")

config("config") {
include_dirs = [ "common/include" ]
}

chip_data_model("closure-common") {
zap_file = "closure-app.zap"
is_server = true
}
Loading
Loading