-
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.
Merge branch 'project-chip:master' into master
- Loading branch information
Showing
811 changed files
with
95,656 additions
and
39,494 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1422,6 +1422,7 @@ xFF | |
xFFF | ||
xFFFF | ||
xfffff | ||
xFFFFFFEFFFFFFFFF | ||
xtensa | ||
xwayland | ||
xyz | ||
|
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 |
---|---|---|
|
@@ -41,8 +41,16 @@ jobs: | |
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: Wandalen/[email protected] | ||
name: Checkout | ||
with: | ||
action: actions/checkout@v3 | ||
with: | | ||
token: ${{ github.token }} | ||
attempt_limit: 3 | ||
attempt_delay: 2000 | ||
- name: Checkout submodules | ||
run: scripts/checkout_submodules.py --shallow --platform darwin | ||
run: scripts/checkout_submodules.py --shallow --platform darwin | ||
- name: Setup Environment | ||
# coreutils for stdbuf | ||
run: brew install openssl pkg-config coreutils | ||
|
@@ -80,6 +88,7 @@ jobs: | |
"./scripts/build/build_examples.py \ | ||
--target darwin-x64-chip-tool-darwin-${BUILD_VARIANT} \ | ||
--target darwin-x64-all-clusters-${BUILD_VARIANT} \ | ||
--target darwin-x64-lock-${BUILD_VARIANT} \ | ||
build \ | ||
--copy-artifacts-to objdir-clone \ | ||
" | ||
|
@@ -93,6 +102,7 @@ jobs: | |
run \ | ||
--iterations 1 \ | ||
--all-clusters-app ./out/darwin-x64-all-clusters-${BUILD_VARIANT}/chip-all-clusters-app \ | ||
--lock-app ./out/darwin-x64-lock-${BUILD_VARIANT}/chip-lock-app \ | ||
" | ||
- name: Uploading core files | ||
uses: actions/upload-artifact@v2 | ||
|
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
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,17 @@ | ||
# Copyright (c) 2022 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_root}/config/webos/webos_sdk.gni") | ||
|
||
sysroot = webos_sysroot |
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,57 @@ | ||
# Copyright (c) 2022 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/pigweed.gni") | ||
|
||
import("${build_root}/config/arm.gni") | ||
|
||
assert(arm_arch != "", "Must specify arm_arch to configure clang for ARM") | ||
|
||
_script_flags = [ | ||
"--gn-scope", | ||
"--cflags", | ||
"--ldflags", | ||
"--", | ||
] | ||
|
||
if (arm_arch != "") { | ||
_script_flags += [ "-march=${arm_arch}" ] | ||
} | ||
if (arm_cpu != "") { | ||
_script_flags += [ "-mcpu=${arm_cpu}" ] | ||
} | ||
if (arm_tune != "") { | ||
_script_flags += [ "-mtune=${arm_tune}" ] | ||
} | ||
if (arm_abi != "") { | ||
_script_flags += [ "-mabi=${arm_abi}" ] | ||
} | ||
if (arm_fpu != "") { | ||
_script_flags += [ "-mfpu=${arm_fpu}" ] | ||
} | ||
if (arm_float_abi != "") { | ||
_script_flags += [ "-mfloat-abi=${arm_float_abi}" ] | ||
} | ||
if (arm_use_thumb) { | ||
_script_flags += [ "-mthumb" ] | ||
} | ||
|
||
_arm_flags = | ||
exec_script("$dir_pw_toolchain/py/pw_toolchain/clang_arm_toolchain.py", | ||
_script_flags, | ||
"scope") | ||
|
||
runtime_library_cflags = _arm_flags.cflags | ||
runtime_library_ldflags = _arm_flags.cflags + _arm_flags.ldflags |
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,20 @@ | ||
# Copyright (c) 2022 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("arm_clang_toolchain.gni") | ||
|
||
arm_clang_toolchain("arm_clang") { | ||
toolchain_args = { | ||
} | ||
} |
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,31 @@ | ||
# Copyright (c) 2022 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_root}/toolchain/gcc_toolchain.gni") | ||
|
||
template("arm_clang_toolchain") { | ||
gcc_toolchain(target_name) { | ||
ar = "llvm-ar" | ||
|
||
toolchain_args = { | ||
current_cpu = "arm" | ||
current_os = invoker.current_os | ||
is_clang = true | ||
|
||
forward_variables_from(invoker.toolchain_args, "*") | ||
} | ||
} | ||
} |
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
Binary file added
BIN
+235 Bytes
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/cd.der
Binary file not shown.
Binary file added
BIN
+479 Bytes
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/dac-Cert.der
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/dac-Cert.pem
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,12 @@ | ||
-----BEGIN CERTIFICATE----- | ||
MIIB2zCCAYGgAwIBAgIIdPS0Rry9ddswCgYIKoZIzj0EAwIwRjEYMBYGA1UEAwwP | ||
TWF0dGVyIFRlc3QgUEFJMRQwEgYKKwYBBAGConwCAQwERkZGMTEUMBIGCisGAQQB | ||
gqJ8AgIMBDAwQjEwIBcNMjIwNDI2MDAwMDAwWhgPOTk5OTEyMzEyMzU5NTlaMD0x | ||
OzA5BgNVBAMMMkFDTUUgTWF0dGVyIERldmVsIERBQyA1Q0RBOTg5OSBNdmlkOkZG | ||
RjEgTXBpZDowMEIxMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEz6yTm/3VzzhP | ||
RWlPINrL/jB871vqTEwIqz+OYdTL2ooD63jfPEVAygfRHAmrXH7rRPCvNfysZR9u | ||
fQ3qq3cwUaNgMF4wDAYDVR0TAQH/BAIwADAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0O | ||
BBYEFLwuBooXut+fsp4K0MyphSCJToF/MB8GA1UdIwQYMBaAFHvphboKFu4Zbaob | ||
Axwjc2WrfPXyMAoGCCqGSM49BAMCA0gAMEUCIQCArZaLxQ6DSosIDYSAmcIQtGL7 | ||
zQvLfGtphlF2ECu33QIgI5enn/l7sthJhzCRs2MVsj9S5zJ+Qljr/iHcjyNzb7o= | ||
-----END CERTIFICATE----- |
Binary file added
BIN
+121 Bytes
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/dac-Key.der
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/dac-Key.pem
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,5 @@ | ||
-----BEGIN EC PRIVATE KEY----- | ||
MHcCAQEEIFCtNcGAyI7EYRMnheNNLlQi3FmLSawTR/2NB/kHU0oToAoGCCqGSM49 | ||
AwEHoUQDQgAEz6yTm/3VzzhPRWlPINrL/jB871vqTEwIqz+OYdTL2ooD63jfPEVA | ||
ygfRHAmrXH7rRPCvNfysZR9ufQ3qq3cwUQ== | ||
-----END EC PRIVATE KEY----- |
Binary file added
BIN
+471 Bytes
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/pai-Cert.der
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/pai-Cert.pem
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,12 @@ | ||
-----BEGIN CERTIFICATE----- | ||
MIIB0zCCAXqgAwIBAgIIWFA9L+I3H8IwCgYIKoZIzj0EAwIwMDEYMBYGA1UEAwwP | ||
TWF0dGVyIFRlc3QgUEFBMRQwEgYKKwYBBAGConwCAQwERkZGMTAgFw0yMjA0MjYw | ||
MDAwMDBaGA85OTk5MTIzMTIzNTk1OVowRjEYMBYGA1UEAwwPTWF0dGVyIFRlc3Qg | ||
UEFJMRQwEgYKKwYBBAGConwCAQwERkZGMTEUMBIGCisGAQQBgqJ8AgIMBDAwQjEw | ||
WTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAATml2V56K3F9tcyE5qim22p/JoHVN3m | ||
yprbSKBM4flsZflC38DNkw0QcUaJHGq7TKXyBq/Zm/fM67Z9WOfMDF6uo2YwZDAS | ||
BgNVHRMBAf8ECDAGAQH/AgEBMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUe+mF | ||
ugoW7hltqhsDHCNzZat89fIwHwYDVR0jBBgwFoAUav0idx9RH+y/FkGXZxDc3DGh | ||
cX4wCgYIKoZIzj0EAwIDRwAwRAIgeUArz/4QljTj6t5P6gENjs7RLMB7SNehG0vq | ||
HHeSmCQCIE+Sl7CggWu/WmtzTx72zB14e0oUqL59IxN1TqDtjn43 | ||
-----END CERTIFICATE----- |
Binary file added
BIN
+121 Bytes
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/pai-Key.der
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
credentials/development/commissioner_dut/struct_dac_vidpid_fallback_encoding_01/pai-Key.pem
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,5 @@ | ||
-----BEGIN EC PRIVATE KEY----- | ||
MHcCAQEEIBG2VwT0hHszwy3xi8EXAmF28ch3/ZHT1u7ZCz7f31mmoAoGCCqGSM49 | ||
AwEHoUQDQgAE5pdleeitxfbXMhOaopttqfyaB1Td5sqa20igTOH5bGX5Qt/AzZMN | ||
EHFGiRxqu0yl8gav2Zv3zOu2fVjnzAxerg== | ||
-----END EC PRIVATE KEY----- |
Oops, something went wrong.