USRP X410 FPGA image
조회 수: 99 (최근 30일)
이전 댓글 표시
When I set the samplerate to 500e6, MATLAB changes the image of my X410 to X1_400, but it only allows two channels to output simultaneously. What should I do to control all four channels of the X410 to output signals simultaneously?
댓글 수: 12
Neil MacEwen
2025년 10월 24일 13:48
Please take this to customer support and provide details of the code you are using and the results you are seeing so we can investigate further.
Thanks,
Neil
Neil MacEwen
2025년 11월 3일 10:42
The issue here was with the configuration of the transmit signal, chengrui is now successful transmitting a 400MHz signal.
채택된 답변
Neil MacEwen
2025년 11월 3일 10:46
The following code can be used to send four channels of data with an X410 at 500 Msps.
bbtx = basebandTransmitter("MyX410"); % you will need to set your own radio configuration name
bbtx.SampleRate=500e6;
bbtx.Antennas = ["DB0:RF0:TX/RX0","DB0:RF1:TX/RX0","DB1:RF0:TX/RX0","DB1:RF1:TX/RX0"];
transmitSignal = getMySignal(); % Four columns of data, one for each antenna
transmit(bbtx,transmitSignal,'continuous');
stopTransmission(bbtx)
댓글 수: 2
Kelly
2025년 11월 4일 18:44
It seems that the current FPGA images supported by the X410 are X1_200 and X1_400. Although the bandwidth is doubled, for continuous transmission and reception, the sample rate is limited by the supported lane — currently 10 Gb Ethernet for the available images. Are there any plans to extend support to all four lanes, given that the X410 supports 100 Gb Ethernet?
Best,
Kelly
Neil MacEwen
대략 18시간 전
Hi Kelly,
The 400MHz bandwidth FPGA image (and 491.52/500 Msps master clock rates) is also currently only supported for the baseband* objects, which are designed for one-shot or repeated transmit, or capture and post-process workflows.
We have support for all four lanes on our list, but it's not currently being actively developed.
Thanks,
Neil
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Communications Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
