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 mipedja

  1. M

    Recommend some books for PSOC

    Re: Book for PSOC. Free on-line book: Architecture and programming of PSoC microcontrollers **broken link removed**
  2. M

    MELABs or MikroEngineering ??

    www.mikroengineering.com For me it is more similar to mikrobasic than PBP, but I dont like its IDE.
  3. M

    Whats the difference between Verilog and VHDL ?

    Re: verilog and VHDL VHDL is familiar with ADA Verilog is familiar with C
  4. M

    Newbie in PIC - Multiplication and Division

    multiplication pic Shifting method... It is same as you present number as a sum of 2^n factors, which is suitable for microcontroller operations. For example if you need to multiply some number with 100 it is same if you multiply with (64+32+4). This can be be easily realized with shifting...
  5. M

    Newbie - Minor Questions on PIC

    Cblock is directive for block of variable definition Cblock 0x20 means that first variable (MULTA) is at address 0x20, secound(MULTB) at 0x21.. and so on... It is the same as : MULTA equ 0x20 MULTB equ 0x21 ...
  6. M

    How to use CAN in PIC microcontrollers

    Re: PIC with CAN PIC18F548 to CAN bus
  7. M

    How to use CAN in PIC microcontrollers

    Re: PIC with CAN mikroPascal, and mikrobasic for pic have built in instructions for CAN communication. There is an example with pic18F458. You can download 2k instructions demo version, and you will be able to compile this example...
  8. M

    serial versus parallel data transfer

    difference between serial & parallel transfer Parallel- short distance. Serial - longer distance.
  9. M

    7-SEGMENT led display function optimisation

    For 8 led displays: It is much better to use one byte with 1 at one bit and 0 at other 7 bits. 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000 00000001 ... In every switch instruction just rotate this byte, and put it on PORT which turns on displays.
  10. M

    How does work a DC relay to use it with 16F84???

    how relay work dc **broken link removed**
  11. M

    Which microcontrollers have two serial ports ?

    Re: Dual Serial Port Cypress PSoC microcontroller can have more hardware serial ports but it is not 8051based...
  12. M

    How Protect ADC Input

    protecting an adc input circuit R- limits the current Zener diode prottect against voltages greater than Vz. Vz is slightly greater than Vdd. Schotky diode protect against negative voltages <-0.2V
  13. M

    PIC16F877A project works on emulator but not on chip!

    Re: A magical problem!!!! Turn off Watch dog timer, and be sure that you are using right oscillator type.
  14. M

    mikroPASCAL and mikroBASIC.

    2k instructions **broken link removed**
  15. M

    In-phase component and Quadrature component

    In agilent AN1298 application note is good explained, physical meaning of OI and Q components.

Part and Inventory Search

Back
Top