Running ModeSDeco2 AND AcarSDeco2 on Same Pi
If you want, ModeSDeco2 and AcarSDeco2 can be installed on the same RPi, provided:
(1) Two DVB-T dongles are plugged into RPi, one for ModeSDeco2, other for AcarSDeco2.
(2) The two dongles are serialized so that each software use its respective dongle+antenna. The dongles can be serialized, say 00000101 & 00000102. In addition, following to be added in config of the two softwares
ModeSDeco2 config:
--device-serial 00000101
AcarSDeco2 config:
--device-serial 00000102
How to serialize dongles
(1) Prepration
## Install necessary tool
sudo apt update
sudo apt install rtl-sdr
## Stop all programs which use the dongle
sudo systemctl stop md2 ad2
(2) Serialize Dongle for ModeSDeco2
## Plug the dvbt dongle you want to use for ModeSDeco2 (UNPLUG ALL OTHER Dongles)
## Issue following command.
## The command will ask [y/n], type y for yes.
rtl_eeprom -s 00000101
## Un-plug the dvb-t dongle
(3) Serialize Dongle for AcarSDeco2
## Plug the dvbt dongle you want to use for AcarSDeco2 (UNPLUG ALL OTHER Dongles)
## Issue following command.
## The command will ask [y/n], type y for yes.
rtl_eeprom -s 00000102
## Un-plug the dvb-t dongle
(4) Now re-plug both dongles
(5) Check that dongles have been correctly serialized
rtl_test -t
(6) Reboot Pi to restore it to normal
sudo reboot