How to Create First Xilinx FPGA Project in Vivado? | FPGA Programming | Verilog Tutorials | Nexys 4

Sdílet
Vložit
  • čas přidán 29. 08. 2024

Komentáře • 45

  • @lucianomartinez2927
    @lucianomartinez2927 Před 2 lety +3

    Gracias compañero!! mil gracias por el video tan detallado y con tanta paciencia!!

  • @raccoonduck5406
    @raccoonduck5406 Před 2 lety +5

    This tutorial is fantastic, thank you !!

  • @MuhammadAhmad-lr4yv
    @MuhammadAhmad-lr4yv Před 3 lety +3

    Highly explained! Going for it.

  • @abdullahsaud6412
    @abdullahsaud6412 Před 3 lety +1

    Impatiently waiting for it
    Thanks Sir

  • @asgharismail7206
    @asgharismail7206 Před 2 lety +2

    Very Well Explained Thankyou

  • @lucastellez7928
    @lucastellez7928 Před 2 lety +3

    Excellent!

  • @tejasg7665
    @tejasg7665 Před 2 lety +3

    Helpful 👏👏

  • @brajkishorrajput9238
    @brajkishorrajput9238 Před rokem +1

    designing of FIR Filter By Vivado software

  • @mannusheetal3161
    @mannusheetal3161 Před 3 lety +2

    please make some more videos on FPGA
    please make a video on random number function generator with FPGA
    highly requested

  • @susantasamanta1349
    @susantasamanta1349 Před 3 lety +3

    if i have input more than 16 bits then how to assign them a switch?

  • @vincentjr8013
    @vincentjr8013 Před 3 lety +3

    How to test big design on fpga , which has clock and 64 bit input and outputs?

  • @f_d557
    @f_d557 Před 3 lety +2

    Nicely explained! Where can I get the reference document?

  • @anilkadiyala
    @anilkadiyala Před rokem +2

    Hi, can we use this board directly by putting on the table or any ESD protection setup is required ..?

    • @sumairaziz9219
      @sumairaziz9219 Před rokem

      we can use it directly if you are using just a basic demo program. If you are loading heavy design, then you must use proper protection setup.

  • @cindyzhang4295
    @cindyzhang4295 Před 3 lety +2

    Can you give out a video on how to add timing constraints in a multiple clock domain design?

  • @muhammedfayas5907
    @muhammedfayas5907 Před 3 měsíci

    Hello Sir, can u please tell me how to access the BRAM in FPGA board, and how to store text file in the BRAM.

    • @ElectroDeCODE
      @ElectroDeCODE  Před 3 měsíci

      This is how it could be done:
      module bram_example (
      input wire clk,
      input wire we,
      input wire [addr_width-1:0] addr,
      input wire [data_width-1:0] din,
      output wire [data_width-1:0] dout
      );
      parameter addr_width = 10;
      parameter data_width = 8;
      // BRAM instantiation
      reg [data_width-1:0] bram [(2**addr_width)-1:0];
      reg [data_width-1:0] dout_reg;
      always @(posedge clk) begin
      if (we) begin
      bram[addr]

  • @user-sb8yh1gr2j
    @user-sb8yh1gr2j Před rokem +1

    Everything is OK, but why I have an error about"program_hw_devices" failed due to earlier errors after running "program device..."?

    • @ElectroDeCODE
      @ElectroDeCODE  Před rokem

      I think there is some error in implementation or synthesis phase. Please check it carefully.

    • @user-sb8yh1gr2j
      @user-sb8yh1gr2j Před rokem +1

      @@ElectroDeCODE ok, I want to make sure other thing. If my implementation and synthesis is all completed(no error) before I had that problemq, then there still might be some problem right?

    • @ElectroDeCODE
      @ElectroDeCODE  Před rokem +1

      You can check your hardware kit, connecting cable and hardware drivers of your computers.
      You may reinstall vivado software and it's drivers on some other computer and try again with it.

  • @LL-ue3ek
    @LL-ue3ek Před rokem +1

    Where can we purchase evaluation modules like this, they all seem to be out of stock.

    • @ElectroDeCODE
      @ElectroDeCODE  Před rokem +1

      You can buy similar boards from digilent website. Similar board available now a days is Artix A7.

  • @lokesh8282
    @lokesh8282 Před rokem +2

    Sir ,what if bitstream error comes??

    • @sumairaziz9219
      @sumairaziz9219 Před rokem

      It means that your selection of device is not correct. You may need to check the pin mapping of input and output as well.

  • @premsinghbardaval2724
    @premsinghbardaval2724 Před 3 lety +2

    If u have code for 7 segment 4 digit display, please send me sir

  • @MohdSalman-yj9eu
    @MohdSalman-yj9eu Před 3 lety +2

    Sir, can you share LDPC code.

  • @engrx535
    @engrx535 Před 2 lety

    👍👍👍

  • @swapnaldeshpande8823
    @swapnaldeshpande8823 Před 2 lety +2

    How much does this kit cost?

    • @engrx535
      @engrx535 Před 2 lety +1

      its costs around 250$. Its new version Nexys A7 is available now a days.

    • @anilkadiyala
      @anilkadiyala Před rokem

      25k INR and 10k for IGST, 2K for customs

  • @brajkishorrajput9238
    @brajkishorrajput9238 Před rokem +1

    any contact details

  • @user-zq8uo6xn6k
    @user-zq8uo6xn6k Před rokem

    Excuse me, I had clicked the "auto connect", but it only appeared localhost(0). Could somebody tell me what happen?🥲(I've tried re-installed cable-driver, and it is no use)

    • @user-zq8uo6xn6k
      @user-zq8uo6xn6k Před rokem +1

      PS:The problem was about 14:55.

    • @ElectroDeCODE
      @ElectroDeCODE  Před rokem

      You can may check the USB cable, if not then then you have to check your FPGA board.
      If that board is working on some other computer with the same cable then you need to do a clean reinstall of your vivado software.

    • @user-zq8uo6xn6k
      @user-zq8uo6xn6k Před rokem +1

      @@ElectroDeCODE ok,thank you, it's really working on other computer, so I am going to reinstall my vivado software.

    • @yallampallisubramanyam9394
      @yallampallisubramanyam9394 Před rokem +1

      @@user-zq8uo6xn6k After reinstalling now vivado software working fine in your laptop?

    • @user-zq8uo6xn6k
      @user-zq8uo6xn6k Před rokem +1

      @@yallampallisubramanyam9394 No, it's still has the same problem. But it's OK with the FPGA board on other computer.