Vivado and Vitis

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ธ.ค. 2024

ความคิดเห็น • 12

  • @vijaysakre5798
    @vijaysakre5798 2 ปีที่แล้ว +1

    Hello,
    Can I have the working code for the vitis please

  • @Priyajit_Ghosh
    @Priyajit_Ghosh ปีที่แล้ว

    what is the 220 course that's mentioned in this video?

  • @iyyappanr957
    @iyyappanr957 ปีที่แล้ว

    Nice tutorial.. Can you tell me which debugger are you using for programming and debugging in this video? Which one is good to use for multiple CPU's and FPGA core debugging?

  • @francofong
    @francofong ปีที่แล้ว

    Thanks!

  • @fernandoi8958
    @fernandoi8958 2 ปีที่แล้ว

    58:03 this indentation is a test to my ocd...

  • @curtisnotestine3134
    @curtisnotestine3134 2 ปีที่แล้ว

    Did you find the error? What was the fix?

    • @johnjj2637
      @johnjj2637 2 ปีที่แล้ว

      For one thing, he used _BASEADDR instead of _DEVICE_ID with XGpio_Initialize().

    • @renshortbull7536
      @renshortbull7536 2 ปีที่แล้ว

      In addition to John's comment, use 1 for the GPIO Channel.

    • @renshortbull7536
      @renshortbull7536 2 ปีที่แล้ว

      It turns out you can see the completed code at the beginning of the BYU Computing Bootcamp Vitis HLS video.

    • @KiệtTrầnAnh-h1q
      @KiệtTrầnAnh-h1q 3 หลายเดือนก่อน

      @@johnjj2637 bro, in the libary "xparameters.h", there only XPAR_AXI_GPIO_0_BASEADDR, no _DEVICE_ID was declared there

  • @marwanal-yoonus280
    @marwanal-yoonus280 2 หลายเดือนก่อน

    Dear friend
    Please, I have a problem during reading the status of an output switch on Zybo Z7-10.
    I use Vitis to program the Zynq processor with Gpio connected to a slid switch. I make the switch (input2) status as a condition as shown in the program below if (D == 1) ;
    The following program works only when the input2 signal that was connected to Gpio IP starts from ("1") but the program does not work when input2 signal starts from ("0").
    //////////
    while (1)
    { D = XGpio_DiscreteRead(&input2, 1); // input2 from a slide switch
    if (D == 1)
    { sum_all = XGpio_DiscreteRead(&input, 1); // input is a 32-bit data
    printf("%x
    " , sum_all);
    sleep (1); }
    else
    { XGpio_DiscreteWrite(&output, 1, 0); // output is a LED
    printf("No_Signal
    ");
    sleep (1); }
    }
    /////////////
    i.e. the program works only when I change input2 from "1" to "0" but does not work when the input2 start changes from "0" to "1".

  • @샤위니
    @샤위니 2 ปีที่แล้ว

    47:00