-
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.
[Telink] Add Bridge example app demo (#25798)
* [Telink] Bridge-App demo draft added * [Telink] Thermostat endpoint draft added * [Telink] bridge included to Github CI * [Telink] Bridged Temperature sensor added * [Telink] cleanup & styling * [Telink] Code cleanup * [Telink] Set correct bridge app name * [Telink] Fix typo after auto merge * [Telink] removed needless atribute condition * [Telink] PRODUCT_ID mod to fix Google Home pairing * [Telink] added ClusterRevision attributes * [Telink] fixed attribute handlers(ClusterRevision) * [Telink] fixed attribute handlers once more * [Telink] fixed CONFIG_CHIP_OPENTHREAD_TX_POWER --------- Co-authored-by: Alex Tsitsiura <[email protected]>
- Loading branch information
Showing
20 changed files
with
2,367 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build/ |
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,88 @@ | ||
# | ||
# Copyright (c) 2023 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. | ||
# | ||
cmake_minimum_required(VERSION 3.13.1) | ||
|
||
set(BOARD tlsr9518adk80d) | ||
|
||
get_filename_component(CHIP_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/third_party/connectedhomeip REALPATH) | ||
get_filename_component(TELINK_COMMON ${CHIP_ROOT}/examples/platform/telink REALPATH) | ||
get_filename_component(GEN_DIR ${CHIP_ROOT}/zzz_generated/ REALPATH) | ||
|
||
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/boards/${BOARD}.overlay") | ||
set(LOCAL_DTC_OVERLAY_FILE "${CMAKE_CURRENT_SOURCE_DIR}/boards/${BOARD}.overlay") | ||
else() | ||
unset(LOCAL_DTC_OVERLAY_FILE) | ||
endif() | ||
|
||
if(EXISTS "${CHIP_ROOT}/src/platform/telink/${BOARD}.overlay") | ||
set(GLOBAL_DTC_OVERLAY_FILE "${CHIP_ROOT}/src/platform/telink/${BOARD}.overlay") | ||
else() | ||
unset(GLOBAL_DTC_OVERLAY_FILE) | ||
endif() | ||
|
||
if(DTC_OVERLAY_FILE) | ||
set(DTC_OVERLAY_FILE | ||
"${DTC_OVERLAY_FILE} ${GLOBAL_DTC_OVERLAY_FILE} ${LOCAL_DTC_OVERLAY_FILE}" | ||
CACHE STRING "" FORCE | ||
) | ||
else() | ||
set(DTC_OVERLAY_FILE ${GLOBAL_DTC_OVERLAY_FILE} ${LOCAL_DTC_OVERLAY_FILE}) | ||
endif() | ||
|
||
set(CONF_FILE ${CHIP_ROOT}/config/telink/app/zephyr.conf prj.conf) | ||
|
||
# Load NCS/Zephyr build system | ||
list(APPEND ZEPHYR_EXTRA_MODULES ${CHIP_ROOT}/config/telink/chip-module) | ||
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) | ||
|
||
project(chip-telink-bridge-example) | ||
|
||
include(${CHIP_ROOT}/config/telink/app/enable-gnu-std.cmake) | ||
include(${CHIP_ROOT}/src/app/chip_data_model.cmake) | ||
|
||
target_compile_options(app PRIVATE -fpermissive) | ||
|
||
target_include_directories(app PRIVATE | ||
include | ||
${GEN_DIR}/app-common | ||
${GEN_DIR}/bridge-app | ||
${TELINK_COMMON}/util/include | ||
${TELINK_COMMON}/app/include) | ||
|
||
add_definitions( | ||
"-DCHIP_ADDRESS_RESOLVE_IMPL_INCLUDE_HEADER=<lib/address_resolve/AddressResolve_DefaultImpl.h>" | ||
-DCHIP_DEVICE_CONFIG_DYNAMIC_ENDPOINT_COUNT=16 | ||
) | ||
|
||
target_sources(app PRIVATE | ||
src/AppTask.cpp | ||
src/main.cpp | ||
src/ZclCallbacks.cpp | ||
src/Device.cpp | ||
src/DeviceCallbacks.cpp | ||
${TELINK_COMMON}/util/src/LEDWidget.cpp | ||
${TELINK_COMMON}/util/src/ButtonManager.cpp | ||
${TELINK_COMMON}/util/src/ThreadUtil.cpp | ||
${TELINK_COMMON}/util/src/PWMDevice.cpp) | ||
|
||
chip_configure_data_model(app | ||
INCLUDE_SERVER | ||
ZAP_FILE ${CMAKE_CURRENT_SOURCE_DIR}/../bridge-common/bridge-app.zap | ||
) | ||
|
||
if(CONFIG_CHIP_OTA_REQUESTOR) | ||
target_sources(app PRIVATE ${TELINK_COMMON}/util/src/OTAUtil.cpp) | ||
endif() |
Oops, something went wrong.