04-02-2025 09:38 PM
I have C++ code for the processor and .vhd code for the FPGA. My board is a USRP X410. How can I program the processor part of the device in C++ in LabVIEW?
04-03-2025 02:11 AM
Hi Bezenchuk,
@BEZENCHUK wrote:
My board is a USRP X410. How can I program the processor part of the device in C++ in LabVIEW?
You don't "program in C++ in LabVIEW", you use C++ OR LabVIEW…
Setup your C++ toolchain correctly for your target (USRP…) and create executables within your C++ IDE.
04-03-2025 02:46 AM
Usrp X410 is a system on a chip with integrated RF interface (RFSoC). The system on a chip consists of a FPGA and a processor. I am developing a project in LabView (I am using a "reference fpga" project). I have embedded the VHD code in LabVIEW FPGA, but I do not know how to embed the code for the processor, written in C++. This was the question, how to embed C++ code in a LabView project
04-03-2025 03:35 AM
Hi Bezenchuk,
@BEZENCHUK wrote:
This was the question, how to embed C++ code in a LabView project
Create a DLL (or .so) and call functions with a CLFN…
04-03-2025 10:42 AM
@BEZENCHUK wrote:
Usrp X410 is a system on a chip with integrated RF interface (RFSoC). The system on a chip consists of a FPGA and a processor. I am developing a project in LabView (I am using a "reference fpga" project). I have embedded the VHD code in LabVIEW FPGA, but I do not know how to embed the code for the processor, written in C++. This was the question, how to embed C++ code in a LabView project
When using LabVIEW FPGA with the x410 I am not sure how you would access to PS of the RFSoC. Maybe you could get shell access to the PS? Generally, I do not think it would be done via LabVIEW.