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 aeneas81

  1. A

    [Quartus II] How to hold a process for a specific time

    [qu@rtus II] How to hold a process for a specific time wow, thanks for the code, wasp. i've tried using the counter version as mentioned by r_e_m_y, though it works fine, I am just wondering is there any other option to achieve the same thing, using less code. anyway, thanks a lot.
  2. A

    Help me fix a code for calculating crc-5 of 11 bit data

    need help with this, pls hi, thanks for reply and the code supplied. however, i do have a question in mind, if process it in counter based, wouldn't it takes decades? i really hope it could be done asap coz sometimes much more than 11 bits will be processed, sometimes up to a few KB... and my...
  3. A

    Help me fix a code for calculating crc-5 of 11 bit data

    need help with this, pls Dear all, I've written the following process to calculate the crc-5 of an 11 bit data for usb purpose. it takes one data at a clock cycle and stores to a signal, then at the 12 clock cycle will perform the calculation. however, for some unknown reason, quartus II keep...
  4. A

    [Quartus II] Ignored default value

    [qu@rtus II] Ignored default value Thanks... I'm using VHDL in Altera Quartus II ver4.0
  5. A

    [Quartus II] Ignored default value

    ignored default value for signal Dear all, I'm wondering why is the default value assign to a signal is always ignored? Is there any special constraints to assign a default value to a signal? All I want to do is to assign a default value to a signal and use that value until external input...
  6. A

    [Quartus II] How to hold a process for a specific time

    Hi all, How can I check that a signal holds it's value for a specific period, such as 5ms, using VHDL in Quartus II? I tried to use Wait for, after simulation, that doesn't has any effect at all. Hope that any of you would be able to help. Thanks in advance Rgds, aen
  7. A

    Help me make a clock divider in VHDL using Altera FPGA

    clock divider Dear all, I would to write a PLL kind of stuff using VHDL using @ltera fpga, and would sincerely appreciate any ideas on doing it. I'm trying to derive a 12MHz clock from a 48Mhz clock. The 12MHz clock will only start generating once a predefined input sequence pattern has been...
  8. A

    Pins that function as both inputs and outputs

    cube, u really made my day!!! thank you so much!! finally i managed to solve a large problem with my design. Thanks! n god bless :)
  9. A

    Pins that function as both inputs and outputs

    I've found the answer myself. Thanks a lot! The std_ulogic type This type is used to represent the value of a digital signal in a wire. For general use, you probably want the std_logic instead. A signal or variable of this type can take on the following values: 'U': uninitialized. This...
  10. A

    Pins that function as both inputs and outputs

    thanks dude, i'll try on the code. by the way, what's a std_ulogic type?
  11. A

    Pins that function as both inputs and outputs

    Dear all, could anyone please teach me how to create pins that can be use as input pin as well as output pin (in VHDL)? I've tried using: twowayPin : INOUT std_logic_vector(63 DOWNTO 0); but whenever i compile i got the follwing warning: Warning: TRI or OPNDRN buffers permanently enabled and...
  12. A

    Critical Warning: Timing requirement not met

    Re: Critical Warning Problem Does that means it processes too many signals in one clock cycle? bsides, I only supplied a 48MHz clock, how come it requires 180MHz instead?
  13. A

    Critical Warning: Timing requirement not met

    Re: Critical Warning Problem This is a print screen of my error, really appreciate help from any of you all. I have been stucked here for quite sometime and couldn't figure out how to solve this problem... Rgds
  14. A

    Critical Warning: Timing requirement not met

    Critical Warning Problem Dear All, Whenever I compile my project(written in pure VHDL codes), it displays a "Critical Warning: Timing requirement not met" and "Can't achieve minimun setup and hold requirement clk along (some numbers) of path(s)" Could anybody please explain to me what this...
  15. A

    Display array data according to clock pulse

    Don't quite understand what do you mean by display, if you wish to output an array at once, maybe you can try this: assuming you have an output pin: display_array : OUT std_logic_vector(your array size) then declare a signal: SIGNAL array_count : INTEGER PROCESS(clk) BEGIN IF clk'EVENT...

Part and Inventory Search

Back
Top