-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
ESP32: Add RPC service to lock-app. #7584
Conversation
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 102 to 112 in 9a69f92
This comment was generated by todo based on a
|
9a69f92
to
ca3f3c6
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 102 to 112 in ca3f3c6
This comment was generated by todo based on a
|
ca3f3c6
to
7513bc9
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 105 to 115 in 7513bc9
This comment was generated by todo based on a
|
7513bc9
to
5e7970a
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 105 to 115 in 5e7970a
This comment was generated by todo based on a
|
5e7970a
to
6836c28
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 105 to 115 in 6836c28
This comment was generated by todo based on a
|
6836c28
to
78135c5
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 106 to 116 in 78135c5
This comment was generated by todo based on a
|
78135c5
to
cbddae1
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 106 to 116 in cbddae1
This comment was generated by todo based on a
|
cbddae1
to
48da9ad
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 106 to 116 in 48da9ad
This comment was generated by todo based on a
|
@sweetymhaiske Will it be possible to edit the description and actually add the commands/responses you've tested. This will help the users to try it out when the support is merged |
static bool uartInitialised; | ||
|
||
extern "C" void __wrap_esp_log_write(esp_log_level_t level, const char * tag, const char * format, ...) | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see that this is duplicated in multiple examples. Is it possible to move it at a common place?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved it to the PigweedLogger service in this CL: https://github.com/project-chip/connectedhomeip/pull/7289/files#diff-35995e2a54a1c71a709bdafbcd4f214d7f23c6e196cb995ed0baa7db05ac3d4dR89
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sweetymhaiske Do you want to update the lock-app README.md with these changes? |
@dhrishi I will update README once lock-app console gets added to this example. Once this PR gets merge then Rob will work upon that. |
48da9ad
to
a77ed24
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 106 to 116 in a77ed24
This comment was generated by todo based on a
|
a77ed24
to
3aa1fc9
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 106 to 116 in 3aa1fc9
This comment was generated by todo based on a
|
/rebase |
3aa1fc9
to
060b6ca
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 106 to 116 in 060b6ca
This comment was generated by todo based on a
|
Done |
060b6ca
to
c330375
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 106 to 116 in c330375
This comment was generated by todo based on a
|
/rebase |
c330375
to
aa1f14e
Compare
auto err = DeviceLayer::SoftwareUpdateMgr().CheckNow();connectedhomeip/examples/lock-app/esp32/main/Rpc.cpp Lines 106 to 116 in aa1f14e
This comment was generated by todo based on a
|
@sweetymhaiske Is anything pending in this PR? |
Nope. |
@woody-apple @andy31415 Can you guys please help? I think one group is pending to review. |
Pullapprove says @dhrishi rejected. that seems at odds with the comments, so I assume it is actually passing. Will manually merge. |
Problem
Change overview
Added the necessary changes for pigweed in lock-app esp32.
Testing