Monday, April 27, 2020

Re: R: R: Mpir Installation

Vincenzo,

On 27/04/2020 18.54, Vincenzo Mone wrote:
> Marcus,
> apologise I have asked you also in a previous message: Please how to do to reply via the mailing list?
> I am using just the reply button and I understood it is wrong.
> Please point me to the right way.

I literally did in my last email.

> Coming back to the gnuradio OK I am using the 3.8 but if you see on the mailing list, I have
> Put several messages as I still cannot getting work the FCDPRPLUS.
> I can read from the FCDPROPLUS Readme this and maybe it does not work:

>
> Don't forget the udev rules: For instance:

You'll find these udev rules have nothing to do with GNU Radio 3.7 or 3.8.

> Please can you tell me what to do?

A udev rule is a text file that tells your operating system what to do
when a new device appears, e.g. when a new USB device gets connected.

You need to make a file in /etc/udev/rules.d/ , e.g.
/etc/udev/rules.d/fcdproplus.rules, and it needs to contain the four lines

SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56"
MODE:="0666"
SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31"
MODE:="0666"

KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8",
ATTRS{idProduct}=="fb56", MODE="0666"
KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8",
ATTRS{idProduct}=="fb31", MODE="0666"

after you've made that file, reboot. That's all.

Best regards,
Marcus

No comments:

Post a Comment