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 admir

  1. A

    pic16f876 ADC problem

    Hi, You forgot bank addressing... You have to change to bank1 to access ADRESL. Something like this: movf ADRESH, W movwf Hi bsf STATUS, RP0 ;ADRESL is in the BANK1 movf ADRESL, W ;Get A/D result (low byte) bcf STATUS, RP0 movwf Lo Hi:Lo contains your ADC. HTH. Regards, Admir.
  2. A

    Library for Graphic LCD?

    grafik library amr7 C-Man, what's wrong with you? The guy is just asking for help!
  3. A

    Using the I2C Bus with C18

    c18 i2c slave gidimiz: Can you explain us why multimaster doesn't work?
  4. A

    PIC Digital power supply

    Original author's web page (in japanese, you can translate it in Google) is here: www.picfun.com/equipj62.html No need to post files available on the web.
  5. A

    Digital potentiometer advice

    pic digital potentiometer code That's where my problem is. I wouldn't purchase big quantities, perhaps 100 or 200. @cyberblak: I can't go analog mux route, my pcb will have 24 inputs... too complex. Hmm... there must be a cheaper way of doing this :-)
  6. A

    Digital potentiometer advice

    proteus mcp42050 I'm looking for a cheap digital potentiometer, for opamp gain control. The requirements for the design are: single supply 0-5V, SPI daisy-chained or I2C, 64-256 taps, independent A B and W terminals, 50-100k. I was looking at datasheets from: Microchip MCP42050, Maxim...
  7. A

    An audio example for dsPIC30f6014

    You are new to datasheets, eh? ;) If you wish to write to CODEC, then you need to write 16 bits this way (see attached picture from datasheet): D0..7: data to write D8..D12: address of the CODEC register to write D13: read/-write bit (=0 for write operation) D14..D15: reserved (=0) So, for...
  8. A

    An audio example for dsPIC30f6014

    There is no "more complet datasheet", you just need to look between the lines :) So... from the actual datasheet: You must realize that when you send audio data with bit0=1, it tells si3000 that the next word you send is the secondary frame data. In your example: 0x7FFF has bit0=1, means...
  9. A

    An audio example for dsPIC30f6014

    What development board are you using? What is the CODEC are you using? :) If you are using dsPICDEM board, Si3000 datasheet (CODEC onboard) is included in the CD. You will find "meaning of this numbers" there ;)
  10. A

    Opinions about and performance of C2C compiler

    pic ant c2c Do you have an example?
  11. A

    WHY PIC MICROCONTROLLERS

    Not now, look at the new PIC18F series for example, it has internal x4 PLL inside. And new dsPIC series have x4, x8 and x16 PLL. For those devices if you have for example 6MHz crystal you can internally multiply it x16, reaching 96MHz.
  12. A

    tutorials for Verilog - website

    Re: tutorials for Verilog You can find it online, here: https://www.asic-world.com/verilog/index.html
  13. A

    linux not able to detect hard disk

    Which version of Mandrake did you tried? The latest one (10.1) has kernel 2.6 and supports SATA.
  14. A

    Assembly or Assembler, which one is right term ?

    Re: Assembly or Assembler Hi, By definition: An assembler is a computer program for translating assembly language. HTH, Admir.
  15. A

    How to do this about Proteus?

    Edit->Tidy

Part and Inventory Search

Back
Top