-
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
Restart BLE advertising after device is de-commissioned (CON-1436) #1174
Comments
Hi, to start BLE advertising, you can invoke |
@DejinChen Thanks or this. Changing Regarding the timeout parameter for |
@pavel808 according to Core Matter specification, Section |
@shubhamdp Ok thanks. It's a bit off topic, but let's take the Matter light example, for example. The Matter core gets started initially with the call : How can we set the advertising window duration from our application initially before any |
@pavel808 SDK uses the 15 minutes timeout and not 300 seconds, and if the extended advertisement is enabled then it is 48 Hrs. If you'd like to not open the commissioning window on boot, you can disable CONFIG_ CHIP_ENABLE_PAIRING_AUTOSTART option and open the commissioning window as per your convenience. |
@pavel808 can you please close the issue if your question is answered. |
I am working on a Matter end device application on an ESP32-C6. It is based on the Matter light example.
Whenever a Matter controller unpairs / de-commissions the end device from the Matter / Thread network, it doesn't start to advertise again over BLE again until I re-flash the device.
On the Matter Controller side I am calling
controller_instance.get_commissioner()->UnpairDevice(devices.at(device_idx).nodeID)
. It appears from the logs that the fabric gets removed. Inapp_main
on the end device, theapp_event_cb
function gets invoked with eventDeviceEventType::kFabricRemoved
, then it appears to open a commissioning window successfully. However it doesn't seem to be BLE advertising.What is the best way to force the end device to re-start advertising over BLE again after the fabric is removed, so that it can be commissioned again? Thanks.
The text was updated successfully, but these errors were encountered: