-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add linux lock app stub. * Add LockManager to linux lock app * Add linux door-lock app to github workflows. * Add door lock cluster to door lock app zap. * Regen auto-generated stuff. * Working on door-lock implementation. * Update a couple auto-generated files. Remove deleted include file. Updating lock-app.zap with more commands and regen files. * More door-lock fixes/improvements. * Cleaning up lock app a bit. * Add linux lock app to build_examples.py script and use it in github workflows. * Addressing review feedback. * Fixup some auto-generated files. * Ran through clang-format. * Regen files. * More review feedback. * Restyle gn files. * Added weak definitions for Lock/Unlock commands. * Addressing review feedback. * Restyle * Quick fix. * Fix format strings in Door Lock cluster * Add Door Lock Cluster to an mbedOS build * Fix format strings and parameter usage * Add placeholder README.md * Make lock-app to build on Darwin * Fix Linux Build tests by adding appropriate targets * Fix formatting in README for linux lock app * Use proper path for Linux lock app in CI * Fix build errors on ESP32 * Update auto-generated files * Fix ESP32 build lock-app build * Move door lock app to the separate example * Fix styling issues Co-authored-by: Morozov-5F <[email protected]>
- Loading branch information
Showing
35 changed files
with
8,776 additions
and
22 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright (c) 2020 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") | ||
|
||
chip_data_model("door-lock-common") { | ||
zap_file = "door-lock-app.zap" | ||
|
||
zap_pregenerated_dir = | ||
"${chip_root}/zzz_generated/door-lock-app/zap-generated" | ||
is_server = true | ||
} |
Oops, something went wrong.