-
Notifications
You must be signed in to change notification settings - Fork 179
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
Comments
Yes, the SPEC says we should select endpoint address for dynamic endpoint by |
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 Is there a way around this? |
@elektro-NIK Thanks for report. Will fix it ASAP. |
This has been fixed with 98c6e80 |
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
andesp_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 (usingdestroy
) 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 theendpoint::create
function, themin_unused_endpoint_id
field is always incremented and stored in NVS.Is this the correct behavior and is there any way around it?
The text was updated successfully, but these errors were encountered: