Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: project-chip/connectedhomeip
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0feaf9c062a0cfcb841374ef3d95c67f399d5bc4
Choose a base ref
..
head repository: project-chip/connectedhomeip
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ac08db08ce4cc4b1baf2581e199cb01f657d85a3
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/controller/python/chip/server/ServerInit.cpp
4 changes: 2 additions & 2 deletions src/controller/python/chip/server/ServerInit.cpp
Original file line number Diff line number Diff line change
@@ -101,8 +101,8 @@ static bool EnsureWiFiIsStarted()
}
#endif

using PostAttributeChangeCallback = void (*)(EndpointId endpoint, ClusterId clusterId, AttributeId attributeId,
uint8_t type, uint16_t size, uint8_t * value);
using PostAttributeChangeCallback = void (*)(EndpointId endpoint, ClusterId clusterId, AttributeId attributeId, uint8_t type,
uint16_t size, uint8_t * value);

class PythonServerDelegate // : public ServerDelegate
{