From 2662873429101d25be07912b6742bcb24e70edd9 Mon Sep 17 00:00:00 2001 From: Yuanyao Zhong <82843247+yyzhong-g@users.noreply.github.com> Date: Mon, 13 Dec 2021 15:28:29 -0500 Subject: [PATCH] Roll up Pigweed to 444f6d0 (#12648) * Roll up Pigweed to 444f6d0 Fix a linking error with building with pw_trace. * update constraints.txt to 3.0.21 for pw_console * Modify namespace of rpc services. This is due to a recent pw_rpc change. * Modify namespaces for rpc services --- examples/common/pigweed/rpc_services/Attributes.h | 2 +- examples/common/pigweed/rpc_services/Button.h | 2 +- examples/common/pigweed/rpc_services/Device.h | 2 +- examples/common/pigweed/rpc_services/Lighting.h | 2 +- examples/common/pigweed/rpc_services/Locking.h | 2 +- examples/ipv6only-app/esp32/include/wifi_service.h | 2 +- scripts/constraints.txt | 2 +- src/test_driver/efr32/src/main.cpp | 2 +- third_party/pigweed/repo | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/common/pigweed/rpc_services/Attributes.h b/examples/common/pigweed/rpc_services/Attributes.h index 68a85e48d620da..34d44b7f5c64a8 100644 --- a/examples/common/pigweed/rpc_services/Attributes.h +++ b/examples/common/pigweed/rpc_services/Attributes.h @@ -29,7 +29,7 @@ namespace chip { namespace rpc { // Implementation class for chip.rpc.Attributes. -class Attributes : public generated::Attributes +class Attributes : public pw_rpc::nanopb::Attributes::Service { public: ::pw::Status Write(const chip_rpc_AttributeWrite & request, pw_protobuf_Empty & response) diff --git a/examples/common/pigweed/rpc_services/Button.h b/examples/common/pigweed/rpc_services/Button.h index 924783a5d6f86c..074a0c6cf95fe1 100644 --- a/examples/common/pigweed/rpc_services/Button.h +++ b/examples/common/pigweed/rpc_services/Button.h @@ -23,7 +23,7 @@ namespace chip { namespace rpc { -class Button : public generated::Button