-
|
i run rtlamr and rtl433 on two different rtl devices via docker. the issue im having is the path to the device changes on every reboot so i have to modify the device path ever boot. rtlamr always uses the first device found so i know to always set rtl433 as the second device. here's my docker compose and here's my so the first device will always be picked up by rtlamr and the second device i have to change the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
This has been discussed a few times and there are multiple ways to solve it, short answer it's tricky to force kernel to have the same usb bus and device ids, on boot it most likely will be the same but the ids are not persistent by design. Better option is to expose More info here #45 (reply in thread) |
Beta Was this translation helpful? Give feedback.
This has been discussed a few times and there are multiple ways to solve it, short answer it's tricky to force kernel to have the same usb bus and device ids, on boot it most likely will be the same but the ids are not persistent by design.
Better option is to expose
/dev/usbfully to the container and have rtl433 do the device selection. If you have multiple devices on the same host then make sure to program those to have different serial numbers and use the-d :serialflag to select it.More info here #45 (reply in thread)