Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How commonly used are the xilinx chips?

I'm beginning to learn embedded with C (and maybe some C++) and someone from the office said they're willing to donate a free xilinx chip they've got sitting on their shelf. I was thinking more along the lines of an Arduino, especially that the Arduino tutorials and sample projects are abundant.

  • Can someone confirm how xilinx chips compare to arduino? Are they known within the industry to be more "real world" in any way? or not?

  • Are there specific xilinx chips (maybe older models) that I should avoid, at least while I'm still starting out?

  • Do they have a relatively steeper learning curve than an Arduino due to lack of tutorials or not?

I'm interested in hearing whatever comes to your mind when you hear xilinx as opposed to Arduino. I know very little about chips, let alone this particular one, so it's very hard to have any informed comparison.

like image 660
cooper Avatar asked Jul 26 '10 19:07

cooper


People also ask

What are Xilinx chips used for?

The Xilinx-based Edgeboard can be used to develop products like smart-video security surveillance solutions, advanced-driver-assistance systems, and next-generation robots. In February 2019, the company announced two new generations of its Zynq UltraScale+ RF system on chip (RFSoC) portfolio.

Does Xilinx manufacture its own chips?

Like AMD itself, though, Xilinx is a fabless semiconductor company (in fact, Xilinx was one of the first companies to switch to that business model), meaning that it doesn't actually manufacture its own chips.

Who uses Xilinx?

Xilinx serves the aerospace and defense industry with commercial, industrial, military, and space grade products. Emulation & Prototyping with FPGAs enables fast and accurate SoC system modeling and verification of embedded software.

Where are Xilinx FPGA used?

FPGA Uses and Applications The applications for FPGAs are vast. Today, they're used in data center, aerospace engineering, defense, artificial intelligence (AI), industrial IoT (internet of things), wired and wireless networking, automotive, and countless other industries.


1 Answers

Xilinx chips are very commonly used, but not for what you want. Xilinx makes FPGAs and CPLDs, which are programmed with VHDL and Verilog (not respectively, both are programmed with both). They are used for prototyping logic circuits to be turned into integrated circuits. If you wanted to make your own ARM chip, for example, you could buy some code from ARM and put it on an FPGA from Xilinx and then program the result in C. I'm not recommending that, just trying to give you an idea of what these beasts are for. Anyway, Arduino is a solid platform for what you want. Go with that.

like image 184
nmichaels Avatar answered Oct 02 '22 23:10

nmichaels