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 cyr

  1. C

    Bit manipulation in C18

    c18 bit manipulation I'm pretty sure using logical operations and bitmasks will compile to the proper bit-test instructions. So for instance "if(reg&0x08)" will compile to "btfsc reg,3" or something like that. In the same way, I think "reg |= 0x80" will compile to "bsf reg,7"
  2. C

    DC_Balance: Manchester-coded data and 8b/10b coding

    Re: dc_balance http://www.rhyshaden.com/encoding.htm Easy to find using google BTW... edit: and more: **broken link removed**
  3. C

    DOLBY DIGITAL DECODER AND AUDIO AMPLIFIER

    There are open source decoders out there that probably could be ported to a DSP. http://liba52.sourceforge.net/
  4. C

    Spartan III Interface

    3.3V levels *are* compatible with 5V TTL levels, but I don't know what requirements your microcontroller has (have you checked?). I also haven't checked the IO specs of the spartan3, but one very simple way to do the conversion if the IOs are fully 5V tolerant is to use 5V pullup resistors and...
  5. C

    Bet way to test a video cable?

    If you have a scope and pulse or step (square wave) generator you could do some simple TDR (time domain reflectormeter) measurements. https://www.thom-tech.com/tdr.htm
  6. C

    What is a wrapper function ?

    Re: WRAPPER FUNCTION Please repair your keyboard, the capslock key seems to be stuck... A wrapper function is a pretty broad term, generally means a function which calls another function to do the real work. The wrapper function itself might change the parameters a bit, do some error checking...
  7. C

    Help me design an analog level shifter

    Re: Analog level shifter A voltage divider (two resistors) between +12 and the input, perhaps an opamp buffer on the output. +12V | R | *---- OUT | R | IN
  8. C

    input zener question...

    It will clamp at +/- 5V (or rather about 5.5 - 6V). One zener is reverse biased ("zener mode") while the other is forward biased ("normal diode mode"), and vice versa...
  9. C

    Customizable C compiler wanted.

    Have a look at LCC: https://www.cs.princeton.edu/software/lcc/
  10. C

    how to increase the current with the same power 3.3v?

    That's not possible, you can't get more power out than you put in (unless you mean input 1A continously and output short pulses of 3-4A).
  11. C

    Can a circuit at 70MHz work stable on a 2 layer board?

    What kind of circuit? The short answer is yes (I've run pretty complicated things much faster on 2 layer homemade boards), but of course it depends... If the circuit is so simple that you can route all the signals on one layer and keep the other one for a ground plane you can build pretty much...
  12. C

    Spartan-3 Starter Kit: Bypassing SystemFlash

    Don't you see the FPGA itself in the JTAG chain when you run IMPACT? I've never used the kit, but the schematic shows the FPGA along with the configuration ROM on the same chain so there shouldn't be any problem configuring the FPGA directly... I think.
  13. C

    how the address bus related with the operating frequency?

    Re: how the address bus related with the operating frequency For what processor? Some fetch and execute one instruction every clock cycle and some don't. Some run faster internally (and have internal caches), so the *external* bus runs much slower than the cpu core. And of course most small...
  14. C

    How to reduce the weight of laptop power adapters ?

    Re: Laptop Power Supplies I don't really see how replacing "normal" inductors with thick power cables is going to make anything *smaller*.
  15. C

    Question about adder in Synplicity and ASIC

    Re: Question about adder They take up the same amount of resources in the FPGA because the full adder fits into one LUT per output bit, and you can't have less than that.

Part and Inventory Search

Back
Top