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 doggiedoll

  1. D

    Converting Hex values to ascii values in C

    How about? char *hex="0x40"; int hex2dec(char *h) { int out=0; if((h[2]>='a' && h[2]<='f') { out=h[2]-'a'+10; } else if((h[2]>='A' && h[2]<='F') { out=h[2]-'A'+10; } else { out=h[2]-'0'+10; } if((h[1]>='a' && h[1]<='f') { out=out*16+h[1]-'a'+10; } else if((h[1]>='A' &&...
  2. D

    replication of matrices in C++

    You cannot return a local array outside your sub routine. Because the memory allocated for your array will be returned to your system after your sub routine end. Can you please explain what you want to do with your function again? So we will see what we can do?
  3. D

    how the win98,xp etc . recognise new HW attached on IDE, US

    Actually, almost anything you need is in DDK. Device Driver Kit from microsoft. It used to be free for download. Now it is free for MSDN sub scriber. If you had it. Its help file will be everything you want to know.
  4. D

    [SOLVED] What exactly is a Pseudo NMOS?

    psuedo n- mos Pseudo NMOS is basically PMOS that has it's GATE tired to GROUND. This PMOS will be always on.. It behaves like resistor. Can you define your question clearer?

Part and Inventory Search

Back
Top