SDR using AD9361 multi-FMCOMMS I get the following error.
조회 수: 3 (최근 30일)
이전 댓글 표시
I ran the following MATLAB code and get the following error code:
Transmit and Receive LTE MIMO using Analog Devices AD9361/AD9364.
It is not decoding correctly. I get the following errors:
The error file is attached along the error.txt file.
Can someone help me what is going on? It is to do with the MATLAB.
Thanks
JAR
댓글 수: 3
Ross Elliot
2019년 4월 16일
Just to confirm that you are running this example (Transmit and Receive LTE MIMO Using a Analog Devices AD9361/AD9364) on two separate Zynq boards, each with a different IP address?
In order to do that you would need to modify the example code. Can you please attach your code, and I can take a look?
Can you also confirm that running the example on a single Zynq board, unmodified, works as expected?
Thanks,
Ross.
채택된 답변
추가 답변 (1개)
Ross Elliot
2019년 4월 17일
The reason that your version is failing is because you have modified the code in the ltePDSCHDecode function on line 182 where lteDeprecode is called. The second input to the function should be a structure, but you are passing a char. The error message that you are seeing explains this:
Error using mwltelibrary The MEX Library function call (lteDLDeprecode) resulted in an error: Parameter is not a structure (error getting structure field NLayers)
You have also modified the receive algorithm on line 362 of antead9361.m so that you are no longer assigning the detected number of cell reference ports to the eNodeB structure. This will also cause the receiver to fail to decode.
I modified your version of ltePDSCHDecode to be the same as the shipping LTE Toolbox function, and reverted your change in antead9361.m to assign the detected value of 'CellRefP' to the eNodeB structure, 'enb', and was able to run decode successfully.
Thanks,
Ross
댓글 수: 3
Neil MacEwen
2019년 5월 30일
Hi Jarul,
I'm glad to hear you have got the code working for two devices. At this moment we have no plans to update our example to work on two devices, many of our customers only have one board and this example can be used by them. If people want to use two boards, they can do as you have done. If you wish to share your code further, you can contribute to File Exchange.
Thanks,
Neil
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!