-
Notifications
You must be signed in to change notification settings - Fork 172
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
Support hot-pluggable serial USB ports #749
Labels
new feature
Something new is needed
Comments
Could be related - #712 |
vortex314
changed the title
Support USB serials that come and go
Support hot-pluggable serial USB ports
Feb 22, 2024
Merged
The issue doesn´t look to be solved :
even with config settings of retry , did I miss something ? listen: {
endpoints: [
"serial//dev/ttyUSB1#baudrate=115200;retry_period_init_ms=20000;retry_period_max_ms=10000",
"serial//dev/ttyUSB2#baudrate=115200;retry_period_init_ms=20000;retry_period_max_ms=10000",
"tcp/localhost:7447",
// "<proto>/<address>"
],
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the feature
I like a lot the concepts and the connectivity of zenoh , it solves a lot of challenges when you try to build a robotic model around pub/sub.
One of the things I try is to use an embedded linux server where the sensors and actuators are connected via USB. This makes it modular and easy composable. So the idea is to use the serial across USB. In linux these devices come and go as "/dev/ttyUSBx" or "/dev/ttyACMx". When I configure zenohd with a serial interface like below.
The zenohd daemon fails to start as the device is not there yet.
Is there a way to address this. As I want to avoid writing unnecessary proxies for zenoh.
Hope you can guide me further.
The text was updated successfully, but these errors were encountered: