Skip to content
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

[portinglayer] Matter data model #143

Merged
merged 29 commits into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
10d6957
[portinglayer][datamodel] add implementation of custom data model
step0035 Jul 3, 2023
b5c1b08
[portinglayer][datamodel] fix
step0035 Jul 11, 2023
5269493
temp commit
step0035 Jul 13, 2023
78626fa
debugging
step0035 Jul 17, 2023
131e560
dont put metadata in class, create an instance during emberafsetdynam…
step0035 Jul 17, 2023
cc4931a
start creating enableEndpoint function
step0035 Jul 17, 2023
247584d
add light_dm example
step0035 Jul 20, 2023
88ac477
[ble] cleanup ble_att_mtu logging
step0035 Jul 21, 2023
48dc70d
setValue and getValue
step0035 Jul 21, 2023
30b2c56
add more presets, add functionConfig
step0035 Jul 21, 2023
d037875
dimmable light endpoint
step0035 Jul 24, 2023
d8f6474
custom copy constructor for Attribute to perform deep copy, still fac…
step0035 Jul 28, 2023
f9c7e26
fix deep copy by using copy constructor
step0035 Jul 31, 2023
9498584
enable all endpoints via node member
step0035 Jul 31, 2023
d1ce751
fix crash when enabling endpoint which has already been enabled
step0035 Aug 7, 2023
42710ad
update light_dm build
step0035 Aug 8, 2023
0a4d538
add descriptor server cluster to dimmable light preset
step0035 Aug 14, 2023
936e6be
cleanup
step0035 Aug 14, 2023
812b0d0
Update README.md
step0035 Aug 14, 2023
08bfad6
cleanup
step0035 Aug 14, 2023
43e137e
remove error-mapping from light_dm build
step0035 Aug 14, 2023
36a90c5
fix descriptorServerCluster not added to dimmable light endpoint preset
step0035 Aug 21, 2023
93527e7
independent devicetype for every endpoint
step0035 Aug 21, 2023
9f08a48
add aggregator endpoint preset
step0035 Aug 21, 2023
e3f696e
make groupkeymap writable
step0035 Aug 22, 2023
a19a904
fix comments and task name in header
step0035 Aug 23, 2023
3b952d4
add gen_config.h and change garbage collector name
step0035 Aug 24, 2023
4cc9c41
add logging options
xshuqun Aug 24, 2023
1b117ab
add macro for build
xshuqun Aug 25, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,6 @@ int bt_matter_adapter_adv(void)

uint16_t ble_att_mtu_z2(uint16_t conn_id)
{
printf("ble_att_mtu_z2 called here============\r\n");
int ret;
uint16_t mtu_size;

Expand Down
Loading