heavy rocker dude
heavy rocker dude

Reputation: 2301

Is there any affordable entry level FPGA development board that Matlab supports?

I am just wondering if if this is possible? I found this board:

http://www.altera.com/products/devkits/altera/kit-cyc2-2C20N.html

There is no mention of Matlab support. Either way, Thanks

Upvotes: 1

Views: 569

Answers (1)

OutputLogic
OutputLogic

Reputation: 409

Interfacing with Matlab is not specific to FPGA board, but FPGA design tools (synthesis and place & route). Both major FPGA vendors - Xilinx and Altera - support Matlab. Xilinx in its System Generator, and Altera in its DSP Builder. The design flow is approximately as follows:

  1. You write your Matlab code, given the restrictions of FPGA tools and FPGA device you're targeting. For example FPGA devices have limited amount of memory, few KByte to few MByte, depending on the device.

  2. You compile your Matlab code. Under the hood the code will be converted to a hardware description language.

  3. FPGA tools will synthesize and place & route the code and generate a bitstream

  4. You program the bitstream into your FPGA.

Upvotes: 4

Related Questions