Skip to content

Commit

Permalink
Bump third_party/pigweed/repo from 4e9bb2b to ee4e09c (#27597)
Browse files Browse the repository at this point in the history
* Bump third_party/pigweed/repo from `4e9bb2b` to `ee4e09c`

Bumps [third_party/pigweed/repo](https://github.com/google/pigweed) from `4e9bb2b` to `ee4e09c`.
- [Commits](google/pigweed@4e9bb2b...ee4e09c)

---
updated-dependencies:
- dependency-name: third_party/pigweed/repo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix darwin framework build with newer clang.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
  • Loading branch information
2 people authored and pull[bot] committed Jul 21, 2023
1 parent 95e5c44 commit 1130440
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@
#import "MTRLogging_Internal.h"
#import "NSDataSpanConversion.h"

#include <lib/support/TypeTraits.h>

void MTRDeviceAttestationDelegateBridge::OnDeviceAttestationCompleted(chip::Controller::DeviceCommissioner * deviceCommissioner,
chip::DeviceProxy * device, const chip::Credentials::DeviceAttestationVerifier::AttestationDeviceInfo & info,
chip::Credentials::AttestationVerificationResult attestationResult)
{
dispatch_async(mQueue, ^{
MTR_LOG_DEFAULT(
"MTRDeviceAttestationDelegateBridge::OnDeviceAttestationFailed completed with result: %hu", attestationResult);
MTR_LOG_DEFAULT("MTRDeviceAttestationDelegateBridge::OnDeviceAttestationFailed completed with result: %hu",
chip::to_underlying(attestationResult));

mResult = attestationResult;

Expand Down
2 changes: 1 addition & 1 deletion third_party/pigweed/repo
Submodule repo updated 92 files
+1 −0 BUILD.gn
+1 −0 PIGWEED_MODULES
+17 −19 WORKSPACE
+1,757 −182 package-lock.json
+3 −1 package.json
+0 −7 pw_bluetooth/BUILD.gn
+4 −0 pw_build/generated_pigweed_modules_lists.gni
+1 −1 pw_build/py/pw_build/project_builder_context.py
+8 −0 pw_build/python_dist.gni
+1 −0 pw_digital_io/docs.rst
+63 −65 pw_digital_io/public/pw_digital_io/digital_io.h
+4 −0 pw_env_setup/BUILD.gn
+39 −0 pw_env_setup/docs.rst
+1 −1 pw_env_setup/py/pw_env_setup/cipd_setup/host_tools.json
+2 −2 pw_env_setup/py/pw_env_setup/cipd_setup/pigweed.json
+39 −0 pw_env_setup/py/pw_env_setup/env_setup.py
+1 −1 pw_env_setup/py/pw_env_setup/python_packages.py
+26 −0 pw_env_setup/sample_project_action/__init__.py
+24 −3 pw_hdlc/py/pw_hdlc/rpc.py
+2 −2 pw_log_zephyr/pw_log_zephyr_tokenized_handler.cc
+238 −0 pw_log_zephyr/py/pw_log_zephyr/pw_zephyr_detokenizer.py
+16 −0 pw_log_zephyr/py/pyproject.toml
+26 −0 pw_log_zephyr/py/setup.cfg
+18 −0 pw_log_zephyr/py/setup.py
+63 −11 pw_package/py/pw_package/packages/zephyr.py
+3 −0 pw_presubmit/py/pw_presubmit/cpp_checks.py
+2 −1 pw_presubmit/py/pw_presubmit/format_code.py
+3 −1 pw_presubmit/py/pw_presubmit/gitmodules.py
+2 −0 pw_presubmit/py/pw_presubmit/inclusive_language.py
+2 −0 pw_presubmit/py/pw_presubmit/json_check.py
+2 −1 pw_presubmit/py/pw_presubmit/keep_sorted.py
+12 −0 pw_presubmit/py/pw_presubmit/presubmit_context.py
+8 −4 pw_presubmit/py/pw_presubmit/shell_checks.py
+4 −1 pw_presubmit/py/pw_presubmit/source_in_build.py
+2 −0 pw_presubmit/py/pw_presubmit/todo_check.py
+1 −0 pw_protobuf/py/setup.cfg
+5 −4 pw_protobuf_compiler/py/setup.cfg
+27 −0 pw_rpc_transport/BUILD.bazel
+25 −0 pw_rpc_transport/BUILD.gn
+1 −0 pw_rpc_transport/CMakeLists.txt
+15 −0 pw_rpc_transport/docs.rst
+4 −4 pw_rpc_transport/public/pw_rpc_transport/hdlc_framing.h
+77 −0 pw_rpc_transport/public/pw_rpc_transport/stream_rpc_dispatcher.h
+141 −0 pw_rpc_transport/stream_rpc_dispatcher_test.cc
+5 −0 pw_spi/public/pw_spi/initiator.h
+61 −0 pw_spi_mcuxpresso/BUILD.bazel
+114 −0 pw_spi_mcuxpresso/BUILD.gn
+2 −0 pw_spi_mcuxpresso/OWNERS
+61 −0 pw_spi_mcuxpresso/docs.rst
+221 −0 pw_spi_mcuxpresso/flexspi.cc
+97 −0 pw_spi_mcuxpresso/flexspi_test.cc
+86 −0 pw_spi_mcuxpresso/public/pw_spi_mcuxpresso/flexspi.h
+99 −0 pw_spi_mcuxpresso/public/pw_spi_mcuxpresso/spi.h
+184 −0 pw_spi_mcuxpresso/spi.cc
+102 −0 pw_spi_mcuxpresso/spi_test.cc
+4 −0 pw_status/rust/BUILD.bazel
+1 −1 pw_status/rust/pw_status.rs
+4 −0 pw_stream/rust/BUILD.bazel
+1 −1 pw_stream/rust/pw_stream/lib.rs
+3 −0 pw_sys_io/docs.rst
+34 −24 pw_sys_io/public/pw_sys_io/sys_io.h
+2 −3 pw_system/py/pw_system/device.py
+2 −2 pw_thread_zephyr/docs.rst
+2 −0 pw_tokenizer/BUILD.gn
+1 −0 pw_tokenizer/api.rst
+62 −0 pw_tokenizer/cli.rst
+1 −0 pw_tokenizer/design.rst
+16 −87 pw_tokenizer/docs.rst
+61 −0 pw_tokenizer/guides.rst
+5 −5 pw_tokenizer/py/pw_tokenizer/detokenize.py
+0 −22 pw_toolchain/BUILD.bazel
+1 −0 pw_toolchain/generate_toolchain.gni
+0 −47 pw_toolchain/rust_toolchain.bzl
+4 −0 pw_varint/rust/BUILD.bazel
+1 −1 pw_varint/rust/pw_varint.rs
+1 −5 pw_web/log-viewer/index.html
+8 −1 pw_web/log-viewer/src/components/log-view/log-list/log-list.styles.ts
+65 −16 pw_web/log-viewer/src/components/log-view/log-list/log-list.ts
+11 −12 pw_web/log-viewer/src/components/log-viewer.ts
+5 −6 pw_web/log-viewer/src/custom/mock-log-source.ts
+13 −2 pw_web/log-viewer/src/index.css
+9 −0 pw_web/log-viewer/src/shared/interfaces.ts
+4 −0 rollup.config.js
+1 −1 seed/0000-index.rst
+2 −0 targets/mimxrt595_evk_freertos/BUILD.gn
+20 −23 third_party/fuchsia/pigweed_adaptations.patch
+0 −13 third_party/fuchsia/repo/sdk/lib/fit/include/lib/fit/internal/compiler.h
+5 −7 third_party/fuchsia/repo/sdk/lib/fit/include/lib/fit/internal/result.h
+8 −12 third_party/fuchsia/repo/sdk/lib/fit/include/lib/fit/nullable.h
+8 −2 third_party/fuchsia/repo/sdk/lib/fit/include/lib/fit/result.h
+1 −0 third_party/fuchsia/repo/sdk/lib/stdcompat/include/lib/stdcompat/internal/storage.h
+2 −0 ts/logging.ts

0 comments on commit 1130440

Please sign in to comment.