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

Update local master #24

Merged
merged 27 commits into from
Feb 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6d06bee
Separate dedicated bluez directory for linux BLE interfacing (#4846)
andy31415 Feb 19, 2021
9d9502f
[controller] Add temporary node id support (#4934)
erjiaqing Feb 19, 2021
2b58bdf
Do a mDNS advertisement on minmdns server startup (#4884)
andy31415 Feb 19, 2021
1a78a5f
[controller] Network commissioning support on Controller (#4622)
erjiaqing Feb 22, 2021
ff259e0
[cirque] Download `chip-cirque-device-base` from docker hub when avai…
erjiaqing Feb 22, 2021
f30f23c
Added documentation of features of CHIP device controller implementat…
markus-becker-tridonic-com Feb 22, 2021
9c31534
Integrate KVS with device session tables (#4952)
pan-apple Feb 23, 2021
35bf119
ESP32: M5Stack - Add provision for factory reset (#4955)
dhrishi Feb 23, 2021
ab1a0bf
Add Content Launch Cluster (#4953)
lazarkov Feb 23, 2021
5480b66
Revert "Integrate KVS with device session tables (#4952)" (#4970)
mspang Feb 23, 2021
536a33f
Fix use-after-free in UpdateAdditionalDataCharacteristic (#4966)
mspang Feb 23, 2021
9059556
[K32W] Update E-Lock demo app to the latest master (#4956)
doru91 Feb 23, 2021
7c09658
Remove Peer/local nodeid dependency for PASE (#4945)
andy31415 Feb 23, 2021
224cd32
[QPG6100] Add initial lighting app version (#4958)
jimlyall-q Feb 24, 2021
c486c91
Darwin base chip cluster (#4883)
vivien-apple Feb 24, 2021
cc5daa9
Allocate more stack for esp32 tests (#4987)
kpschoedel Feb 24, 2021
88328e4
[python] Add command for Thread provisioning (#4991)
Damian-Nordic Feb 24, 2021
45e8674
Join multicast groups for mDNS. (#4974)
andy31415 Feb 24, 2021
9a791a8
Integrate KVS with device session tables (#4976)
pan-apple Feb 24, 2021
c931932
Fix chip tool code generation does not work (#4971)
lazarkov Feb 24, 2021
d48bcf2
Optimize the temperature-measurement-app to use less RAM and Flash. (…
sweetymhaiske Feb 24, 2021
2891d6b
Fix TI simplelink in unified build (#4983)
mspang Feb 24, 2021
3eddc00
Fix Platform::New to return nullptr on failure (#5008)
kpschoedel Feb 25, 2021
ad27724
Fix write_buildconfig_header.py self-reference (#4999)
mspang Feb 25, 2021
5ca7308
Python based device scanning interfacing with native C++ code on linu…
andy31415 Feb 25, 2021
7e2a87a
Remove unnecessary checking and casting of sizeof when we need uint16…
bzbarsky-apple Feb 25, 2021
df5569f
Rename some IM MessageDef name in code (#5007)
yunhanw-google Feb 25, 2021
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
4 changes: 3 additions & 1 deletion .github/workflows/cirque.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
submodules: true
- name: Bootstrap
run: |
integrations/docker/images/chip-build-cirque/run.sh scripts/tests/cirque_tests.sh bootstrap
integrations/docker/images/chip-build-cirque/run.sh \
--env GITHUB_ACTION_RUN=1 \
-- scripts/tests/cirque_tests.sh bootstrap
- name: Artifact suffix
id: outsuffix
uses: haya14busa/[email protected]
Expand Down
16 changes: 8 additions & 8 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ if (current_toolchain != "${dir_pw_toolchain}/dummy:dummy") {
enable_android_builds = false

# Set this to true to enable TI builds by default.
enable_cc13x2_26x2_builds = false
enable_ti_simplelink_builds = false

# Set this to true to enable efr32 builds by default.
enable_efr32_builds = false
Expand Down Expand Up @@ -179,8 +179,8 @@ if (current_toolchain != "${dir_pw_toolchain}/dummy:dummy") {
enable_linux_lighting_app_build =
enable_default_builds && (host_os == "linux" || host_os == "mac")

# Build the cc13x2_26x2 lock app example.
enable_cc13x2_26x2_lock_app_build = enable_cc13x2_26x2_builds
# Build the cc13x2x7_26x2x7 lock app example.
enable_cc13x2x7_26x2x7_lock_app_build = enable_ti_simplelink_builds

# Build the efr32 lock app example.
enable_efr32_lock_app_build = enable_efr32_builds
Expand Down Expand Up @@ -240,9 +240,9 @@ if (current_toolchain != "${dir_pw_toolchain}/dummy:dummy") {
}
}

if (enable_cc13x2_26x2_lock_app_build) {
group("cc13x2_26x2_lock_app") {
deps = [ "${chip_root}/examples/lock-app/cc13x2_26x2(${chip_root}/config/cc13x2_26x2/toolchain:cc13x2_26x2_lock_app)" ]
if (enable_cc13x2x7_26x2x7_lock_app_build) {
group("cc13x2x7_26x2x7_lock_app") {
deps = [ "${chip_root}/examples/lock-app/cc13x2x7_26x2x7(${chip_root}/config/cc13x2_26x2/toolchain:cc13x2x7_26x2x7_lock_app)" ]
}
}

Expand Down Expand Up @@ -346,8 +346,8 @@ if (current_toolchain != "${dir_pw_toolchain}/dummy:dummy") {
if (enable_qpg6100_lock_app_build) {
deps += [ ":qpg6100_lock_app" ]
}
if (enable_cc13x2_26x2_lock_app_build) {
deps += [ ":cc13x2_26x2_lock_app" ]
if (enable_cc13x2x7_26x2x7_lock_app_build) {
deps += [ ":cc13x2x7_26x2x7_lock_app" ]
}
}

Expand Down
2 changes: 1 addition & 1 deletion build/chip/write_buildconfig_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def GetOptions():

def WriteHeader(options):
with open(options.output, 'w') as output_file:
output_file.write("// Generated by gn/chip/write_buildconfig_header.py\n")
output_file.write("// Generated by write_buildconfig_header.py\n")
if options.rulename:
output_file.write('// From "' + options.rulename + '"\n')

Expand Down
4 changes: 2 additions & 2 deletions config/cc13x2_26x2/toolchain/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import("//build_overrides/chip.gni")

import("${build_root}/toolchain/arm_gcc/arm_toolchain.gni")

arm_toolchain("cc13x2_26x2_lock_app") {
arm_toolchain("cc13x2x7_26x2x7_lock_app") {
toolchain_args = {
current_os = "freertos"
import("${chip_root}/examples/lock-app/cc13x2_26x2/args.gni")
import("${chip_root}/examples/lock-app/cc13x2x7_26x2x7/args.gni")
}
}
3 changes: 3 additions & 0 deletions config/esp32/components/chip/component.mk
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ install-chip : $(OUTPUT_DIR)
echo esp32_cc = \"$(CC)\" >> $(OUTPUT_DIR)/args.gn
echo esp32_cxx = \"$(CXX)\" >> $(OUTPUT_DIR)/args.gn
echo esp32_cpu = \"esp32\" >> $(OUTPUT_DIR)/args.gn
ifeq ($(is_debug),false)
@echo "is_debug = false" >> $(OUTPUT_DIR)/args.gn
endif
if [[ "$(CONFIG_ENABLE_PW_RPC)" = "y" ]]; then \
echo "chip_build_pw_rpc_lib = true" >> $(OUTPUT_DIR)/args.gn ;\
echo "pw_log_BACKEND = \"//third_party/connectedhomeip/third_party/pigweed/repo/pw_log_basic\"" >> $(OUTPUT_DIR)/args.gn ;\
Expand Down
1 change: 1 addition & 0 deletions examples/all-clusters-app/all-clusters-common/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ source_set("all-clusters-common") {
"${chip_root}/src/app/clusters/basic/basic.cpp",
"${chip_root}/src/app/clusters/bindings/bindings.cpp",
"${chip_root}/src/app/clusters/color-control-server/color-control-server.cpp",
"${chip_root}/src/app/clusters/content-launch-server/content-launch-server.cpp",
"${chip_root}/src/app/clusters/door-lock-server/door-lock-server-core.cpp",
"${chip_root}/src/app/clusters/door-lock-server/door-lock-server-logging.cpp",
"${chip_root}/src/app/clusters/door-lock-server/door-lock-server-schedule.cpp",
Expand Down
Loading