forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5937df0
commit 6ccaf17
Showing
29 changed files
with
420 additions
and
712 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
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 @@ | ||
3.12.0 |
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,164 @@ | ||
# 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/build.gni") | ||
import("//build_overrides/chip.gni") | ||
import("//build_overrides/efr32_sdk.gni") | ||
import("//build_overrides/pigweed.gni") | ||
|
||
import("${build_root}/config/defaults.gni") | ||
import("${efr32_sdk_build_root}/silabs_executable.gni") | ||
|
||
import("${chip_root}/examples/common/pigweed/pigweed_rpcs.gni") | ||
import("${chip_root}/src/platform/device.gni") | ||
import("${chip_root}/third_party/silabs/silabs_board.gni") | ||
|
||
assert(current_os == "freertos") | ||
|
||
silabs_project_dir = "${chip_root}/examples/lighting-app/silabs" | ||
examples_common_plat_dir = "${chip_root}/examples/platform/silabs" | ||
|
||
if (wifi_soc) { | ||
import("${chip_root}/third_party/silabs/SiWx917_sdk.gni") | ||
examples_plat_dir = "${chip_root}/examples/platform/silabs/SiWx917" | ||
} else { | ||
import("${efr32_sdk_build_root}/efr32_sdk.gni") | ||
examples_plat_dir = "${chip_root}/examples/platform/silabs/efr32" | ||
} | ||
|
||
import("${examples_common_plat_dir}/args.gni") | ||
|
||
declare_args() { | ||
# Dump memory usage at link time. | ||
chip_print_memory_usage = false | ||
} | ||
|
||
if (slc_generate) { | ||
# Generate Project Specific config (Board, hardware used etc..) | ||
print(exec_script("${chip_root}/third_party/silabs/slc_gen/run_slc.py", | ||
[ | ||
rebase_path(chip_root), | ||
"${silabs_board}", | ||
"${disable_lcd}", | ||
"${use_wstk_buttons}", | ||
"${use_wstk_leds}", | ||
"${use_external_flash}", | ||
"${silabs_mcu}", | ||
rebase_path(slc_gen_path), | ||
], | ||
"list lines")) | ||
} | ||
|
||
if (wifi_soc) { | ||
siwx917_sdk("sdk") { | ||
sources = [ | ||
"${examples_common_plat_dir}/FreeRTOSConfig.h", | ||
"${silabs_project_dir}/include/CHIPProjectConfig.h", | ||
] | ||
|
||
include_dirs = [ | ||
"${chip_root}/src/platform/silabs/SiWx917", | ||
"${silabs_project_dir}/include", | ||
"${examples_plat_dir}", | ||
"${chip_root}/src/lib", | ||
"${examples_common_plat_dir}", | ||
] | ||
|
||
defines = [] | ||
} | ||
} else { | ||
efr32_sdk("sdk") { | ||
sources = [ | ||
"${examples_common_plat_dir}/FreeRTOSConfig.h", | ||
"${silabs_project_dir}/include/CHIPProjectConfig.h", | ||
] | ||
|
||
include_dirs = [ | ||
"${chip_root}/src/platform/silabs/efr32", | ||
"${silabs_project_dir}/include", | ||
"${examples_plat_dir}", | ||
"${chip_root}/src/lib", | ||
"${examples_common_plat_dir}", | ||
] | ||
|
||
if (use_wf200) { | ||
# TODO efr32_sdk should not need a header from this location | ||
include_dirs += [ "${examples_plat_dir}/wf200" ] | ||
} | ||
|
||
if (chip_enable_ble_rs911x) { | ||
# TODO efr32_sdk should not need a header from this location | ||
include_dirs += [ | ||
"${examples_plat_dir}/rs911x", | ||
"${examples_plat_dir}/rs911x/hal", | ||
] | ||
} | ||
|
||
defines = [] | ||
} | ||
} | ||
silabs_executable("generator") { | ||
output_name = "generator.out" | ||
include_dirs = [] | ||
defines = [] | ||
|
||
if (silabs_board == "BRD2704A") { | ||
defines += [ "SL_STATUS_LED=0" ] | ||
} | ||
|
||
sources = [ | ||
"main.cpp", | ||
] | ||
|
||
deps = [ | ||
":sdk", | ||
] | ||
|
||
if (wifi_soc) { | ||
deps += [ "${examples_plat_dir}:siwx917-common" ] | ||
} else { | ||
deps += [ "${examples_plat_dir}:efr32-common" ] | ||
} | ||
|
||
ldscript = "${examples_common_plat_dir}/ldscripts/${silabs_family}.ld" | ||
|
||
inputs = [ ldscript ] | ||
|
||
ldflags = [ "-T" + rebase_path(ldscript, root_build_dir) ] | ||
|
||
if (chip_print_memory_usage) { | ||
ldflags += [ | ||
"-Wl,--print-memory-usage", | ||
"-fstack-usage", | ||
] | ||
} | ||
|
||
# WiFi Settings | ||
if (chip_enable_wifi) { | ||
ldflags += [ | ||
"-Wl,--defsym", | ||
"-Wl,SILABS_WIFI=1", | ||
] | ||
} | ||
|
||
output_dir = root_out_dir | ||
} | ||
|
||
group("silabs") { | ||
deps = [ ":generator" ] | ||
} | ||
|
||
group("default") { | ||
deps = [ ":silabs" ] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,28 @@ | ||
# 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/build.gni") | ||
|
||
# The location of the build configuration file. | ||
buildconfig = "${build_root}/config/BUILDCONFIG.gn" | ||
|
||
# CHIP uses angle bracket includes. | ||
check_system_includes = true | ||
|
||
default_args = { | ||
target_cpu = "arm" | ||
target_os = "freertos" | ||
chip_enable_wifi = true | ||
import("//wifi.gni") | ||
} |
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 @@ | ||
../../examples/build_overrides |
Oops, something went wrong.