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 sanjiv

  1. S

    Which gates act as universal gates?

    Re: Universal Gates Universal gates are the one, which can be used for implementing any gate like AND, OR and NOT. Also used for implementing gates of any combination of these basic gates. NAND and NOR gates are the only Universal gates.
  2. S

    How to use simulator in CCS v3.1?

    Re: CCS please find the attached Code Composer Studio user guide in pdf fomat.
  3. S

    difference between C and Embedded C

    what is difference between c and embedded c Embedded C is not part of the C language as such. Rather, it is a C language extension that is the subject of a technical report by the ISO working group named "Extensions for the Programming Language C to Support Embedded Processors" . It aims to...
  4. S

    c++ passing array from function to main function wit pointer

    Re: c++ passing array from function to main function wit poi go through yashwant kanatekar's "Let us C" book
  5. S

    What is assertion and where is it used ?

    Re: what is assertion?? Assertion is simple a logical condition which should be true during execution of program main advantage is that it can be enabled in debuging and disabled during final program whithout editing the code. e.g. FILE *fp; fp=fopen(...) ASSERT(fp!=NULL);
  6. S

    What is the XNOR equation in C programming?

    xnor c programming In C ^ is ex-or operator and ~ is complement to get ex-nor use ~(a^b)
  7. S

    What's the relation between FPGA and ASIC?

    Re: Fpga and asic FPGAs are great for prototyping and low-volume production. Any relatively complex mid- to high-volume design for which power consumption, component cost and size are important issues requires another solution for mass production. That is where structured-ASIC technologies come...
  8. S

    Convert C to assembly

    convert command to assembly It will depend upon complier you using.
  9. S

    what is the minimum silkscreen width

    you can go down to 2 mil without a problem, so 8 mil isn't a hard minimum.
  10. S

    Curious about MCU differences.

    PIC series MCU from microchip are miniature in size are most suitable for low end applications where size is a constraint. there are other high end MCU like ARM9 and TI DSP microcontroller TMS320c2800 which can be used for high end activities.
  11. S

    Matlab installation problem

    normally when you are working in a network environment, your server controls the installation rights. If your installation is giving probs due to this reason, you can log in using local administrator mode and then try to install matlab again.
  12. S

    when Z(high impedece ) is given as one of the input to AND .

    Re: when Z(high impedece ) is given as one of the input to A because of high impedance on one of the input pin, i think it is difficult to presume that as high. It should be taken as low only. therefore output will be low.
  13. S

    Looking for material on RS flip flop

    Re: flip flop check these links **broken link removed** **broken link removed**
  14. S

    Is there a condition for power factor to become unity?

    Re: power factor power factor = cos(Phi) it should be purely resistive ckt. In practical life no ckt is purely resistive. therefore power factor is always less than 1.
  15. S

    Pull-up register for bus interface in 8051

    Re: 8051 Port 0 has two fold role: if external memory is used, it contains the lower address byte (addresses A0-A7), otherwise all bits of the port are either input or output. Another feature of this port comes to play when it has been designated as output. Unlike other ports, Port 0 lacks the...

Part and Inventory Search

Back
Top