Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
What is the best way to send data from Matlab to fpga? (Altera DE1)
I need it to control servo motors
I get details from a camera and according to this i want to operate servo motorsWhat data do you want to send?
There is not ethernet in my board.Through UART or Ethernet. If your dev board contains Ethernet, you can use UDP to send through Ethernet or else simply a PC with Serial port is way too easy to implement in FPGA.
And to add to xtcx's comment, MATLAB's instrumentation control toolbox can be used to transfer data in many formats, including Ethernet and serial, between MATLAB and an FPGA.
The only standard interface exposed by Altera DE1 board is RS-232.
omerysmi already started a thread about it, I presume he has all required infomations https://www.edaboard.com/threads/341672/
RS-232 can be secured on the protocol layer, e.g. by CRC. You can use up to 922 kBaud with standard RS-232 adapters, so speed shouldn't be an issue.
when i use this bridge i send the data in uart protocol(tx, rx..) as usual?USB-to-RS232 bridge seems to be the straightforward solution. You know that we have previously talked about USB communication through USB Blaster in your other thread. But I don't think that you'll like the software overhead.