Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Medea

  1. M

    Counter cİrcuİt (3 forward 2 back)

    For that sequence, the code could be: process(clk) begin if clk = '1' and clk'event then cnt_int <= cnt + 1; if up = '1' then if cnt_int = 2 then cnt_int <= (others => '0'); up <= '0'; end if; else -- down if cnt_int = 1...
  2. M

    Counter cİrcuİt (3 forward 2 back)

    another possibility could be to consider the counter as a state machine with two states: up and down. It could be something like that process(clk) begin if clk = '1' and clk'event then if up = '1' then cnt <= cnt + 1; if cnt = 1 then up <= '0'...
  3. M

    Zynq QSPI Flash - Program it without Vivado SDK

    Hello everyone! I am working with a Zynq device and I have already finished the development cycle, so I already have a .BIN file that works. This file is stored in a QSPI Flash memory that is loaded through the JTAG of the Zynq. Right now, I program the Flash from the SDK or the TCL console, so...

Part and Inventory Search

Back
Top