主要孔蒂nt

Setup for Two Radios Connecting to One Host

After the support package is installed, set up the two radio hardware by using the guided setup method.

Note

The two ADALM-PLUTO radios must be set up with different radio IDs.

引导一个主机上设置了两个收音机

The guided setup is recommended for Windows®, Linux®, and OS X operating systems.

Note

When working with multiple radios, if devices are inserted or removed, the host computer assignment of USB addresses might change. Any time an SDR device is inserted or removed from a USB port, the host computer polls all USB ports and assigns or reassigns the radio addresses associated with connected devices.

USB address assignment for multiple radios

When operating on Windows keep these considerations in mind.

  • When running multiple radios on the same host in separate MATLAB®sessions, for each MATLAB session the first radio is assignedusb:0,身份证号码增量subsequent radios.

  • Radios that are being used by one MATLAB are not seen by other MATLAB sessions. UsefindPlutoRadioand check the reported serial number to identify the radios seen in a particular MATLAB session.

To ensure that all assigned radio identities remain static, do not connect or disconnect radios after SDR objects have been created. The best practice is to connect radios and create SDR objects in this order:

  1. Clear all SDR objects.

  2. Connect all radios.

  3. Check to confirm that the connected radios are recognized by running this command:

    findPlutoRadio

  4. Create SDR objects.

To interface with the radio hardware, theRadioIDproperty of the radio object must match the radio ID of the radio hardware. Update theRadioIDproperty, if necessary.

When running multiple radios on the same host, the host assigns each radio a different radio ID. When identifying the radio by USB ID, the first radio is assignedusb:0,身份证号码增量subsequent radios. For example, to assign IDs to two radios connected on the same host computer, at the MATLAB command prompt, enter:

rx = sdrrx('Pluto','RadioID','usb:0'); tx = sdrtx('Pluto','RadioID','usb:1');

Interacting with Two Radios

The internal radio ID of each radio object, System object™, or block interacting with the radio hardware must match the radio ID assigned to the radio hardware during setup.

In these examples, the first radio, acting as a receiver, is assignedusb:0. The second radio, acting as a transmitter, is assignedusb:1.

Tip

Run two instances of MATLAB on the host: one for the receiver and one for the transmitter.

When operating on Windows keep these considerations in mind.

  • When running multiple radios on the same host in separate MATLAB sessions, for each MATLAB session the first radio is assignedusb:0,身份证号码增量subsequent radios.

  • Radios that are being used by one MATLAB are not seen by other MATLAB sessions. UsefindPlutoRadioand check the reported serial number to identify the radios seen in a particular MATLAB session.

Radio Objects

Create a radio object for interacting with the receiver, and a radio object for interacting with the transmitter. In both objects, update theRadioIDproperties with the assigned radio ID.

RxDevice = sdrdev('Pluto'); RxDevice.RadioID ='usb:0';
TxDevice = sdrdev('Pluto'); TxDevice.RadioID ='usb:1';

Radio System Objects

Create a System object for interacting with the receiver, and a System object for interacting with the transmitter. When you create both System objects, set the correspondingRadioIDproperty.

rx = sdrrx('Pluto','RadioID','usb:0'); tx = sdrtx('Pluto','RadioID','usb:1');

Radio Blocks

Create a block for interacting with the receiver, and a block for interacting with the transmitter. In both blocks, update the corresponding block with the matchingRadioIDparameter.

Set the radio ID for each connected radios.

Related Topics