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 shell3

  1. S

    RTOS and Web Server integrated in a single package

    Re: RTOS + Web Server No, I am starting with nothing. Do I really need an OS, can I run a web server alone. All I need is to connect my test set to a PC using TCPIP and use web pages to configure the test to execute.
  2. S

    RTOS and Web Server integrated in a single package

    I am designing a tester that will use Web Pages for configuration. It is using ARM9 AT91RM9200 microcontroller. I need a solution that includes RTOS and Web Server integrated in a single package. The simpler, the better. Any suggestions? Thank you
  3. S

    What is assertion and where is it used ?

    Re: what is assertion?? The following example shows the benefit of using assertion in addition to digital simulation. Assertion uses a symbolic language to infer the rules applaying to a design. Lets decribe the rules for a RAM interface using assertions: 1) CS must be active during READ or...
  4. S

    How to interface a DAC to a VCXO?

    Re: VCXO digital tuning ddt694 paper is helping. I just need to add a Low Pass Filter bethween the the DAC and the VCXO. I will switch new questions to Analog Circuit Design forum. Thanks,
  5. S

    How to interface a DAC to a VCXO?

    I need a stable oscillator with digital tuning: 19.44 MHz +/- 100ppm. Since I am not familiar with analog design: is it possible to use a digital to analog converter and connect the DAC output to the Control Voltage pin of the VCXO. This way it will be possible load a "digital" value in the...
  6. S

    Need a stable oscillator with digital tuning that can be connected to a VCXO pin

    I need a stable oscillator with digital tuning: 19.44 MHz +/- 100ppm. Since I am not familiar with analog design: is it possible to use a digital to analog converter and connect the DAC output to the Control Voltage pin of the VCXO. This way it will be possible load a "digital" value in the DAC...
  7. S

    insert io pad in rtl or netlist?

    I also favor using a top level RTL file to put the I/O cells including input registers and output registers. I also instantiate the cells to make sure I get the right cell type and drive I need. This is good place also to put the cell placement constraints. I use a separate timing constraint...
  8. S

    Which language is beeterr for designing FPGA, VHDL or Verilog?

    Re: VHDL or Verilog Verilog is going to be the winner, especially with the release of 2001 and SystemVerilog. Already, $ynopsys is giving indication that it will support Verilog more than VHDL. All VHDL tool accept Verilog now, which was not the case some time ago.
  9. S

    System level verification

    A good design process is to have two teams, one that designs the RTL code and one that designs the test cases at the top level (Component interface). Both teams use the hardware specification as a reference. The design team make some validation at the block level to validate the basic...
  10. S

    Pattern recognition in Verilog (word problem)

    Actually the verilog version will work as shown below, because "shift" will start with all 'x', after eight zeros are shifted in the out will go HI and stay HI forever. The gate version will not work because the "shift" may contain any value from 0 to 255. The result will be correct only when...
  11. S

    any good microcontroller with lots of flash/ram inside?

    tmp95fy64 price The Zilog eZ80F91 has 256KB Flash + 8KB high speed RAM and a 10/100BaseT Ethernet MAC
  12. S

    How to control an Ethernet link with VB

    vb link with ethernet My problem is to control a remote equipment throught an Ethernet link using Visual Basic. I will like to write a command to a TX-Buffer and have this buffer sent automatically to a RX-Buffer in the remote equipment. The same scheme in the test equipment will send a...
  13. S

    can this verilog description be synthesized?

    modulo function in verilog It is perfectly valid to write : always @ ( negedge RESETN or posedge CLK ) begin if ( !RESETN ) COUNT<= 0; else COUNT<= COUNT + 1; end This the implementation of synchronous counter with asynchromnous active-low reset.
  14. S

    Negative hold time - is it possible and what does it mean?

    It basically mean that the propagation delay through the gates and wirings used to build the FF are such that the data may change 200ps before the clock edge and still meet the hold time requirement.
  15. S

    What kind of revision control system people on this site use

    We are using WinCVS (V1.2) and it is very good.

Part and Inventory Search

Back
Top