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

Numbering of bridged endpoints (CON-761) #629

Closed
elektro-NIK opened this issue Sep 12, 2023 · 4 comments
Closed

Numbering of bridged endpoints (CON-761) #629

elektro-NIK opened this issue Sep 12, 2023 · 4 comments

Comments

@elektro-NIK
Copy link

I am working on developing a bridge between Matter and non-Matter devices.

My bridge must be able to dynamically create and delete bridged endpoints. I do this using the esp_matter_bridge::create_device and esp_matter::endpoint::destroy APIs and I noticed that endpoint IDs for new devices are issued one after the other, even if there are endpoints released (using destroy) before that. This leads to the fact that when I create and delete device IDs, they reach the maximum number for the bridge and no more are created.

I've researched this behavior a bit, and it's because, in esp_matter_core.cpp, in the endpoint::create function, the min_unused_endpoint_id field is always incremented and stored in NVS.

Is this the correct behavior and is there any way around it?

@github-actions github-actions bot changed the title Numbering of bridged endpoints Numbering of bridged endpoints (CON-761) Sep 12, 2023
@wqx6
Copy link
Contributor

wqx6 commented Sep 12, 2023

Yes, the SPEC says we should select endpoint address for dynamic endpoint byincrementing from the highest previously (ever) used endpoint address. And the SPEC also says that when the endpoint address reaches 65535(UINT16_MAX), it MAY wrap around to the lowest unused endpoint address. We are planning to add this logic later.

@elektro-NIK
Copy link
Author

elektro-NIK commented Sep 12, 2023

Ok, thank you.

I continued experimenting and ran into the following problem. My devices stop being created after 125 creation-deletions. Because 2 namespaces are used for each endpoint, and with esp_matter_bridge::erase_bridged_device_info, the nvs_erase_all API is called, which erases all key-value pairs, but the namespace itself remains, and NVS can only have 255 namespaces.

Is there a way around this?

@wqx6
Copy link
Contributor

wqx6 commented Sep 13, 2023

@elektro-NIK Thanks for report. Will fix it ASAP.

@dhrishi
Copy link
Collaborator

dhrishi commented Feb 27, 2024

This has been fixed with 98c6e80

@dhrishi dhrishi closed this as completed Feb 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants