[ / / / / / / / / / / / / / ] [ dir / animu / fast / fur / imouto / leftpol / omnichan / sw / ztg ][Options][ watchlist ]

/tech/ - Technology

You can now write text to your AI-generated image at https://aiproto.com It is currently free to use for Proto members.
Name
Email
Subject
Comment *
File
Select/drop/paste files here
* = required field[▶ Show post options & limits]
Confused? See the FAQ.
Expand all images

[–]

 No.856068>>856095 [Watch Thread][Show All Posts]

What do you guys recommend for experimenting with FPGA's? I know very little about hardware design at this point, but with an extensive programming background I should be able to pickup VHDL or Verilog very quickly. As a hobbyist, I'd just be designing toy projects, but perhaps you guys have experience working on bigger projects and can share some ideas.

As an example, this looks very decent, and would probably last me a while, but perhaps you can shill for a better alternative.

https://store.digilentinc.com/nexys-4-ddr-artix-7-fpga-trainer-board-recommended-for-ece-curriculum/ (Pic related)

While I'm starting this as a question, since we do not have any FPGA or EE posts, let this serve as a general thread.

 No.856079>>856080 >>856085


 No.856080>>856085

>>856079

This, but to be clear it's not everything iCE. It's specifically the iCE40 chipset. It's the only FPGA with a completely FOSS verilog to bitstream toolchain.


 No.856085

>>856079

>>856080

Open source hardware? Oy vey!!! How long before that is shut down? T-t-he goyim c-can't build a RISC processor with that can they???


 No.856095>>856101

>>856068 (OP)

>but with an extensive programming background I should be able to pickup VHDL or Verilog very quickly

Software programming and stuff like VHDL and verilog while looking similar, require a different mindeset and approach of designing the code.


 No.856101>>856102

File (hide): 4924b8fcece6386⋯.png (205.3 KB, 777x767, 777:767, stable genius.png) (h) (u)

>>856095

I have heard that, but I look forward to learning the different approach. I am a stable genius so it shouldn't be too difficult. It's 'just for fun' too, so there's no time pressure if I do go at a leisurely pace.


 No.856102>>856103

File (hide): 253d42906289178⋯.jpg (236.79 KB, 1943x1479, 67:51, hans_lernt_addieren.jpg) (h) (u)

>>856101

>stable genius

What?


 No.856103>>856155

>>856102

No one knows more about horses than me, nobody. Horses are great, don't we love horses? You know they have a lot of horses in MONTANA! Anyone from Montana here? Beautiful. You know I won Montana and Idaho in a land slide folks. I like to win. Do we like winners? Like a race horse, you ever see those horses, the ones that just win all the time. I like those horses. And we're going to keep winning like a prized race horse. Big league.


 No.856155


 No.856272>>856288

Why would someone want an FPGA board rather than a SBC with a low powered processor? I figure the latter will use more power, but I assume the other factor is because an FPGA is a lot cheaper when you manufacture a product?


 No.856288>>856290

File (hide): 4a1f651b4a2bce1⋯.jpeg (157.56 KB, 1024x683, 1024:683, download (3).jpeg) (h) (u)

>>856272

Speed and ability to do things in parallel. FPGAs are not running software, they're just a collection of logic blocks and DSP units. When you write your VHDL or verilog description of the circuit, synthetizator figures out how to connect logic blocks together to realize your circuit. You can do things that takes conventonal Von Neumann processor hundreds of cycles in a single cycle on an FPGA.


 No.856290>>856306

>>856288

What are the most common clock rates fpga can hit?


 No.856292>>856306

I'm curious how the Ethernet and USB ports work on that board. Are there routines you load into the FPGA to get a TCP/IP stack? Also how well can you implement numerical operations on an FPGA? Do you push the work to a FPU, or again load a routine to do it all in the FPGA?


 No.856306>>856324

>>856290

Usual FPGA circuit will use multiple clocks depending on the requirements of the circuit. You can have some part running at 1 Hz and push data to some bus running at 100 MHz. They don't usually go above 1 GHz.

>>856292

>I'm curious how the Ethernet and USB ports work on that board. Are there routines you load into the FPGA to get a TCP/IP stack?

Usually manufacturer provides IP (Intellectual property) cores https://www.xilinx.com/products/intellectual-property/ef-di-25gemac.html to handle networking, otherwise you build it using state machines. Most FPGAs use special transciever interfaces to push large amounts of data (>1Tb/s).

>Do you push the work to a FPU, or again load a routine to do it all in the FPGA

There is no FPU on FPGA, you can implement one but you usually just send it to DSP or literary build an adder from logic gates.


 No.856324>>856333

File (hide): 63e7befe9781233⋯.png (69.62 KB, 958x632, 479:316, vivado.png) (h) (u)

>>856306

>The Xilinx 10G/25G Ethernet MAC/PCS is provided in netlist form to licensed Ethernet customers only.

Oh lordy. Sounds pricy.

>Vivado Design Suite

$2995

I did see that Xilinx have a free WebPACK version of their ISE software which at least runs in linux, so there is that.

As a cheaper alternative, I came across this board from Terasic, which uses an Altera FPGA (owned by Intel). Are they at least comparable to Xilinx? Would a beginner even notice the difference?

http://www.terasic.com.tw/cgi-bin/page/archive.pl?CategoryNo=17&Language=English&No=830&PartNo=1


 No.856333>>856343

>>856324

>Would a beginner even notice the difference?

No, you could learn with $15 FPGA from ebay. Problem is that there are no external devices on those boards (buttons, leds, displays, connectors) so you have to wire them yourselves. If you're interested in "programming" (which is really logic circuit design) then it's best to use kits with external devices on board. Also there is https://opencores.org/projects which you can use in place of IP from big companies. For learning that should be plenty of fun.


 No.856343>>856348

>>856333 (checked)

Cheers, the opencores project looks like a useful resource. I'll most certainly look for kits (terasic and diligent seem to good) to make things a bit easier. As for VHDL itself, I see this book is recommended, would you agree?


 No.856348>>856350

File (hide): 2daebb9133224d2⋯.jpg (96.51 KB, 500x648, 125:162, 0131863894.jpg) (h) (u)

>>856343

Yes, you will also want to have pic related for basics of digital circuits.


 No.856350

>>856348

I have Mano's book which someone gave me a few years ago, but I'll keep this in mind should the other one be useless.


 No.856371>>856376

Tinkering with FPGAs is something I've been meaning to do for sometime. Right now I have my eye on this. It's priced much cheaper than the board OP posted and geared towards the beginner.

https://store.digilentinc.com/basys-3-artix-7-fpga-trainer-board-recommended-for-introductory-users/

Analog stuff could be fun too

https://store.digilentinc.com/analog-discovery-2-student-bundle/


 No.856374

I recommend these boards and xilinx ise

https://embeddedmicro.com/mojo-v3.html

https://www.xilinx.com/products/boards-and-kits/1-3i2dfk.html

The Mojo has a Spartan-6 chipset, Arduino microcontroller and flash along with easy yo access pin outs. It also has a very excellent beginners tutorial: https://embeddedmicro.com/tutorials/mojo-fpga-beginners-guide

The xilinx micro is so small you can travel with it. Both are tiny as point in fact.

Hope this helps really love my mojo.


 No.856376>>856378

>>856371

Apologies for a dumb question, but what basic output pins do you have on a board like this? I see lots of peripherals but surely you can do basic high/low connections to a broad board, right?


 No.856378>>856383

File (hide): b91e08a580b0213⋯.png (355.04 KB, 736x750, 368:375, Screenshot at 2018-01-22 2….png) (h) (u)

>>856376

All those connectors on the side (2) are GPIO pins. Pic related for more info.


 No.856383>>856394

>>856378

Ahhh ok. Now for dumb question #2. Is it necessary to master analog circuit design before digital? I know it's not one or the other, but is there a progression which should be followed?


 No.856394>>856420

>>856383

No, unless you're planning to design high speed circuits (GHz and beyond) or you're using analog sensors in your project (which are mostly simple circuits to implement unless you're dealing with low noise or high precision devices). Maybe, if you want to do digital audio then you'll probably have to add low-pass filter to the output (PWM sound). For general digital desigh ohm's law is pretty much all you need. You should at least be able to calculate what value resistor for LED you need. In summary, you can start with digital now and pick up analog bits as you go (most of the time you'll just do pure digital things such as: boolean algebra, karnaugh maps, state diagrams, VHDL... nothing to do with analog electronics).


 No.856420

>>856394

Ok that's fine then. I have a good grasp on the fundamentals, but I'd have to learn / review things more complicated than basic op-amp's. In fact I have a very nice book which covers such topics, "The Art of Electronics", which sadly I have not gotten around to completing.


 No.856544>>856549 >>856603

Is circuit design the last tech refuge of the straight white man? Seriously now, it does look like a fun unchartered territory where the poz has not set in.


 No.856549>>856552

>>856544

>t. someone who has no idea about programming nor (analog nor digital) circuit design


 No.856552

>>856549

Explain your moronic comment.


 No.856564>>856568

I have a gameboy advanced how do I mine bitcoin?


 No.856568

>>856564

>advanced

you fucking mong


 No.856570>>856820

Do you guys recommend getting a board with an integrated processor? As a beginner this seems like overkill, but it does seems to be the trend these boards are going with, and it doesn’t seems to add much to the price.

https://store.digilentinc.com/zybo-z7-zynq-7000-arm-fpga-soc-development-board/


 No.856603>>857115

>>856544

An FPGA keeps the Pajeets away.


 No.856641>>856820

>buying into the silicon jew

kys op


 No.856820>>856909

>>856641

Why are you even here?

>>856570

You can always use a pure FPGA (say Artix 7) and lay out a soft-cpu architecture like MicroBlaze, and run applications with that. It will be slower than the integrated ARM-A9 found in the Zynq-7000 though. There's a lot of hype around the Zynq family at the moment as it does make some problems easier when built as a FPGA/CPU hybrid, especially if you want to transfer existing programming knowledge to your product design. It is also possible to ignore the ARM-A9 and still do something like MicroBlaze, but that would be strange. Perhaps one idea is to buy an entry level FPGA at the beginning and then a higher end Zynq board once you gain experience.


 No.856909>>856916

>>856820

phone wars shitflinging and speccy dick-measuring, but you guys are pretty crap so far. Step up your game, 9gag


 No.856916

>>856909

What the hell did I just read???


 No.857115

File (hide): 6e155aec582f559⋯.png (87.41 KB, 1268x602, 634:301, sir.png) (h) (u)

>>856603

No. Look at the FPGA videos you find on youtube, nearly all of them are by some variation of Pajeet Vindalutikapopadom. Now on the plus side, these are probably top-tier Brahmin class Indians, which is fine. What you don't want are the lazy low skilled ones who poo all over an enterprise javascript project. What I have noticed, is that the the real annoyance in /tech/, the purple haired SJWs, are caught and contained by the Raspberry Pi filters. There's even zynq boards specially designed for Python programming, so even if they dream about advancing, there are plenty of traps preventing them from ruining electrical engineering.

Video for pic related, quite interesting.

https://www.youtube.com/watch?v=UeatDM-sp8U




[Return][Go to top][Catalog][Screencap][Nerve Center][Cancer][Update] ( Scroll to new posts) ( Auto) 5
37 replies | 9 images | Page ?
[Post a Reply]
[ / / / / / / / / / / / / / ] [ dir / animu / fast / fur / imouto / leftpol / omnichan / sw / ztg ][ watchlist ]