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 bpu

  1. B

    VHDL For Loop Synthesis Problem!

    vhdl loop synthesis for synthesis tool in expression: for i in x downto y loop you should use constants x and y. are you sure, that you expression: for i in elite-1 downto 0 loop contain constant elite, or maybe elite is signal? if it is, than is wrong.
  2. B

    Is possible for hold time to be 0ns??

    real hold time always more than 0 ns. but the clock tree can have short delays (with comparison to data paths), than more or equal than hold time of real flip-flop elements of fpga. if this delay is equal to real hold time, that we have 0 ns hold time in fpga. if more, than we can have negative...
  3. B

    zero padding - increase sampling rate in freq domain

    zero padding can not increase sampling rate in freq domain, it increase resolution of frequency domain.
  4. B

    Help on Verilog-HDL error: found pins functioning as undefined clocks/memory

    Help on Verilog-HDL when altera quartus write this messages ("Warning: Found pins functioning as undefined clocks and/or memory enables Info: Assuming node "Clock" is an undefined clock") in mean, that you need to use the quartus assignments (map the "Clock" port to the one of the clk pin of...
  5. B

    Post fit HDL Simulation in ModelSim

    only for post fit hdl simulation you can set the default values for all of states. after simulation (after good result) you can delete the default state of states of the fsm.
  6. B

    how to simulate this filter?

    why you can't define a transfer function in matlab? data_sample_out_1 = filter(coeff,data_sample_in_1); coeff = func(coeff, data_sample_out_1); data_sample_out_2 = filter(coeff,data_sample_in_2); coeff = func(coeff, data_sample_out_2); data_sample_out_3 = filter(coeff,data_sample_in_3); ...
  7. B

    Need FFT-VHDL code (Urgent)

    fft vhdl code see at https://www.opencores.com/
  8. B

    Looking for solution manual to Proakis' DSP: Principles, Algorithms and Applications

    dsp proakis rapidshare please, use the search solution manual at edaboard.com at rapidshare.de: **broken link removed**
  9. B

    QAM simulation in matlab/simulink

    matlab qam 1) generate input I/Q data in MATLAB 2) read this data in simulator (Modelsim, Aldec, etc.) 3) save output data of your design in simulator 4) compare the output data of hdl design and MATLAB model Aldec and Modelsim also can work with MATLAB directly, but i don't know how
  10. B

    How to implement data framing?

    if your fifo is overflowed, increase the number of words in fifo no relation, you can use the different clocks.
  11. B

    How to reset D flip-flops in a register

    if you need to clear the register at the time, when optional increment isn't selected, use the synchronous clear process begin if (rising_edge(clk)) then if (increment=0) then register <= 0; else register <= register + increment; end if; end if; end process;
  12. B

    Newbie about initial state of FPGA

    FPGA doesn't assigns 'zero' as a default value. Your synthesis tool assign the default values of all the registers in FPGA, it can be non zero.
  13. B

    How is time/duration represented in Matlab?

    Time in Matlab the time duration is not represent in matlab. for example a = [1 0 1 1 0 0 0 1 1 1 0]; length(a) = 11; sample time is 1us (for example) summary: length of a is 11us you can't say to matlab how to use your physical sample time. but you need to remember, than sample time is xx...
  14. B

    How to simulate a TDMA scheme in Matlab?

    tdma in matlab the link is right. don't click on link, use copy-paste of link and trim the begin of the link **broken link removed**
  15. B

    how to plot the signal in frequency domain by MATLAB?

    time domain to frequency domain in matlab If you need more samples in the frequency domain, add the some zeros to the end of the signal before fft

Part and Inventory Search

Back
Top