11-03-2014 07:49 AM
I have a customer request to have an .NET application send configuration settings to an LabVIEW FPGA application. What method would someone recommend? The other request would be to send back results to the FPGA application when complete. I am looking for a good starting point to communicate between LabVIEW FPGA and a .NET application.
Thanks!
11-04-2014
06:40 PM
- last edited on
08-13-2024
12:20 PM
by
Content Cleaner
Matt,
Could you explain a little more about what these configuration settings you are sending are?
As far as a starting point for communicating between LabVIEW FPGA and .NET application, I would recommend reading our Introduction to the FPGA Interface C API linked below.
Best,
11-06-2014 07:58 AM
We are looking at creating middle ware that would be a LabVIEW application. Would exchange the data using a TCP/IP communications between LabVIEW and .NET. Would use DMA FIFOs between LabVIEW and LabVIEW FPGA. Configuration is a 2D array of numeric data. When the program runs they wants to buffer 3,000 samples a second from the FPGA and send back to .NET. Any additional thoughts?
11-06-2014 07:36 PM
if you are communicating using TCP/IP then the fact that the other application is .net is not a factor.
open a socket and read and write. no different than LabVIEW to LabVIEW other than you have to match byte order and data types etc. your original post implied you wanted to talk to the FPGA directly from a .net application where you would need to use the c-interface
11-07-2014 03:50 AM
the application builder can create a LabVIEW .net interop for you that is callable from any other app