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

Unable to connect BLE Server again after disconnecting. #41

Open
ashoksharma842 opened this issue Apr 29, 2024 · 2 comments
Open

Unable to connect BLE Server again after disconnecting. #41

ashoksharma842 opened this issue Apr 29, 2024 · 2 comments

Comments

@ashoksharma842
Copy link

In BLE server, callback,

else if(operation == LE_DISCONNECT) {
    // clientnode has just disconnected
    // uncomment next line to stop LE server when client disconnects
    // return(SERVER_EXIT);
    // otherwise LE server will continue and wait for another connection
    // or operations from other clients that are still connected
    printf("Disconnected\n");
    // return(SERVER_EXIT);
}

on commenting return(SERVER_EXIT), the server shows disconnected
but it doesn't connect again.
To connect again, binary needs restart.

@petzval
Copy link
Owner

petzval commented May 1, 2024

I have not been able to reproduce your error. If I connect to the server, then disconnect, the server goes back into waiting mode and I can re-connect with no problem. Can you supply more details, it might be a problem with the client.

@JonathanCortez
Copy link

I get this similar effect when I disconnect from my app or device, it shutdown the LE Server. But what works for me is by just removing return(SERVER_EXIT) this keeps it going and I can connect again.

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