blob: 6890ad52000eee0db0488ffd9e03cd15f15b2eb7 [file]
# Copyright (c) 2021 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/bouffalolab_iot_sdk.gni")
import("//build_overrides/build.gni")
import("//build_overrides/chip.gni")
import("${bouffalolab_iot_sdk_build_root}/bl616/bouffalo_sdk.gni")
import("${bouffalolab_iot_sdk_build_root}/common/bouffalolab_executable.gni")
import("${build_root}/config/defaults.gni")
import("${chip_root}/examples/common/pigweed/pigweed_rpcs.gni")
import("${chip_root}/src/platform/bouffalolab/common/args.gni")
import("${chip_root}/src/platform/device.gni")
import("${chip_root}/src/app/chip_data_model.gni")
if (chip_enable_pw_rpc) {
import("//build_overrides/pigweed.gni")
import("$dir_pw_build/target_types.gni")
}
assert(current_os == "freertos")
example_dir = "${chip_root}/examples/lighting-app/bouffalolab"
examples_plat_dir = "${chip_root}/examples/platform/bouffalolab"
declare_args() {
# Dump memory usage at link time.
chip_print_memory_usage = true
# OTA periodic query timeout in seconds
ota_periodic_query_timeout_seconds = 86400
# reboot delay in seconds to apply new OTA image
ota_auto_reboot_delay_seconds = 5
enable_heap_monitoring = false
enable_reset_counter = false
setupPinCode = 20202021
setupDiscriminator = 3840
board = "BL616DK"
module_type = "BL616"
baudrate = 2000000
}
bouffalo_sdk("sdk") {
include_dirs = [
"${example_dir}/bl616",
"${examples_plat_dir}/bl616",
"${examples_plat_dir}/common/route_hook",
"${chip_root}/src/platform/bouffalolab/BL616",
"${chip_root}/src/platform/bouffalolab/common",
]
defines = [
"INCLUDE_xSemaphoreGetMutexHolder=1",
"CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE=${setupPinCode}",
"CHIP_DEVICE_CONFIG_USE_TEST_SETUP_DISCRIMINATOR=${setupDiscriminator}",
"OTA_PERIODIC_TIMEOUT=${ota_periodic_query_timeout_seconds}",
"OTA_AUTO_REBOOT_DELAY=${ota_auto_reboot_delay_seconds}",
"CHIP_UART_BAUDRATE=${baudrate}",
]
defines += [ "PW_RPC_ENABLED=${chip_enable_pw_rpc}" ]
if (chip_enable_pw_rpc) {
include_dirs += [ "${examples_plat_dir}/common/rpc" ]
defines += [ "PW_RPC_ENABLED=1" ]
defines += [ "DISABLE_PRINT=1" ]
} else if (chip_build_libshell) {
include_dirs += [ "${examples_plat_dir}/common/plat" ]
}
if (chip_enable_wifi || chip_enable_ethernet) {
include_dirs += [ "${examples_plat_dir}/bl616/lwipopts" ]
}
}
chip_data_model("bouffalolab-lighting") {
if (chip_enable_openthread) {
zap_file = "${example_dir}/data_model/lighting-app-thread.zap"
} else if (chip_enable_wifi) {
zap_file = "${example_dir}/data_model/lighting-app-wifi.zap"
} else {
zap_file = "${example_dir}/data_model/lighting-app-ethernet.zap"
}
is_server = true
}
bouffalolab_executable("lighting_app") {
output_name = "chip-bl616-lighting-example.out"
bl_plat_name = "bl616"
defines = [
"APP_TASK_STACK_SIZE=4096",
"CHIP_UART_BAUDRATE=${baudrate}",
"BL616_ENABLE",
"START_ENTRY=main",
]
defines +=
[ "CONFIG_BOUFFALOLAB_FACTORY_DATA_ENABLE=${chip_enable_factory_data}" ]
if (chip_config_network_layer_ble) {
defines += [ "CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE=1" ]
}
if (false == enable_reset_counter) {
defines += [ "BOOT_PIN_RESET=2" ]
}
if (enable_lwip_pbuf_ram) {
defines += [ "CHIP_SYSTEM_CONFIG_PACKETBUFFER_LWIP_PBUF_RAM=1" ]
}
defines += [ "BL616DK" ]
sources = [
"${chip_root}/examples/providers/DeviceInfoProviderImpl.cpp",
"${example_dir}/common/AppTask.cpp",
"${example_dir}/common/ZclCallbacks.cpp",
"${examples_plat_dir}/common/bouffalo_sdk/demo_pwm.c",
"${examples_plat_dir}/common/bouffalo_sdk/platform_port.cpp",
"${examples_plat_dir}/common/plat/LEDWidget.cpp",
"${examples_plat_dir}/common/plat/OTAConfig.cpp",
"${examples_plat_dir}/common/plat/main.cpp",
"${examples_plat_dir}/common/plat/platform.cpp",
]
deps = [
":bouffalolab-lighting",
":sdk",
"${chip_root}/examples/providers:device_info_provider",
"${chip_root}/src/lib",
"${chip_root}/src/setup_payload",
]
include_dirs = [
"${chip_root}/src/platform/bouffalolab/BL616",
"${example_dir}/common",
"${example_dir}/bl616",
"${examples_plat_dir}/common/plat",
"${examples_plat_dir}/common/bouffalo_sdk",
]
if (chip_enable_wifi || chip_enable_ethernet) {
include_dirs += [ "${examples_plat_dir}/bl616/lwipopts" ]
}
if (chip_enable_wifi || chip_enable_ethernet) {
include_dirs += [ "${examples_plat_dir}/common/route_hook" ]
if (chip_enable_wifi) {
defines += [ "CHIP_DEVICE_CONFIG_ENABLE_WIFI" ]
}
sources += [
"${examples_plat_dir}/common/route_hook/bl_route_hook.c",
"${examples_plat_dir}/common/route_hook/bl_route_table.c",
]
}
if (chip_enable_openthread) {
import("//build_overrides/openthread.gni")
deps += [
"${chip_root}/third_party/openthread/platforms:libopenthread-platform",
"${chip_root}/third_party/openthread/platforms:libopenthread-platform-utils",
]
if (chip_openthread_ftd) {
defines += [ "CHIP_DEVICE_CONFIG_THREAD_FTD=1" ]
deps += [
"${openthread_root}:libopenthread-cli-ftd",
"${openthread_root}:libopenthread-ftd",
]
} else {
defines += [ "CHIP_DEVICE_CONFIG_THREAD_FTD=0" ]
deps += [
"${openthread_root}:libopenthread-cli-mtd",
"${openthread_root}:libopenthread-mtd",
]
}
}
defines += [ "CONFIG_ENABLE_CHIP_SHELL=${chip_build_libshell}" ]
defines += [ "PW_RPC_ENABLED=${chip_enable_pw_rpc}" ]
if (chip_enable_pw_rpc) {
defines += [
"PW_RPC_ENABLED",
"PW_RPC_ATTRIBUTE_SERVICE=1",
"PW_RPC_BUTTON_SERVICE=1",
"PW_RPC_DESCRIPTOR_SERVICE=1",
"PW_RPC_DEVICE_SERVICE=1",
"PW_RPC_LIGHTING_SERVICE=1",
#"PW_RPC_TRACING_SERVICE=1",
]
sources += [
"${chip_root}/examples/common/pigweed/RpcService.cpp",
"${chip_root}/examples/common/pigweed/bouffalolab/PigweedLoggerMutex.cpp",
"${examples_plat_dir}/common/rpc/PigweedLogger.cpp",
"${examples_plat_dir}/common/rpc/Rpc.cpp",
]
deps += [
"$dir_pw_hdlc:rpc_channel_output",
"$dir_pw_kvs:crc16",
"$dir_pw_log",
"$dir_pw_stream:sys_io_stream",
#"$dir_pw_trace",
#"$dir_pw_trace_tokenized",
#"$dir_pw_trace_tokenized:trace_rpc_service",
"${chip_root}/config/bouffalolab/common/lib/pw_rpc:pw_rpc",
"${chip_root}/examples/common/pigweed:attributes_service.nanopb_rpc",
"${chip_root}/examples/common/pigweed:button_service.nanopb_rpc",
"${chip_root}/examples/common/pigweed:descriptor_service.nanopb_rpc",
"${chip_root}/examples/common/pigweed:device_service.nanopb_rpc",
"${chip_root}/examples/common/pigweed:lighting_service.nanopb_rpc",
"${examples_plat_dir}/common/rpc/pw_sys_io:pw_sys_io",
]
if (chip_enable_openthread) {
deps += [
"${chip_root}/examples/common/pigweed:ot_cli_service.nanopb_rpc",
"${chip_root}/examples/common/pigweed:thread_service.nanopb_rpc",
]
}
deps += pw_build_LINK_DEPS
include_dirs += [
"${chip_root}/examples/common",
"${chip_root}/examples/common/pigweed/bouffalolab",
]
} else if (chip_build_libshell) {
if (chip_build_libshell) {
include_dirs += [
"${chip_root}/src/lib/shell",
"${chip_root}/examples/shell/shell_common/include",
]
deps += [ "${chip_root}/examples/shell/shell_common:shell_common" ]
}
}
defines += [ "HEAP_MONITORING=${enable_heap_monitoring}" ]
if (enable_heap_monitoring) {
sources += [ "${examples_plat_dir}/common/plat/MemMonitoring.cpp" ]
}
if (bouffalo_sdk_component_easyflash_enabled) {
defines += [ "BOUFFALO_SDK_COMPONENTS_EASYFLASH_ENABLED=1" ]
} else {
defines += [ "BOUFFALO_SDK_COMPONENTS_EASYFLASH_ENABLED=0" ]
}
print("bouffalo_sdk_root=${bouffalo_sdk_root}")
cflags_c = [ "-Wno-sign-compare" ]
ldscript = "${bouffalo_sdk_root}/bsp/board/bl616dk/bl616_flash.ld"
ldflags = [ "-T" + rebase_path(ldscript, root_build_dir) ]
inputs = [ ldscript ]
if (chip_print_memory_usage) {
ldflags += [
"--specs=nano.specs",
"-Wl,--print-memory-usage",
"-fstack-usage",
]
}
output_dir = root_out_dir
}
group("bl616") {
deps = [ ":lighting_app" ]
}
group("default") {
deps = [ ":bl616" ]
}