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 sanjusony

  1. sanjusony

    [PIC] from where i can get the programs for pi 16f877a

    CCS compiler is the easiest compiler for PIC micro controller. You will found lots examples on program installation directory as "Example" file. Apart from you can use 'help' almost all your problems. program snippets available at help. **broken link removed** this link will help with some...
  2. sanjusony

    [SOLVED] What is the minimum voltage required make PORTB in PIC16F88 make High

    I used a signal of [high 2.2V ] which is detecting as input in PIC16F628a is not detecting as signal in PIC16F88 please help?
  3. sanjusony

    [PIC] External Interrupt for PIC16F882 (Working on Simulation(Proteus) but not in Hardwar )

    Dears , Thanks your prompt replies.:thumbsup: I checked the program using bellow changes. unsigned char X=0; inside ISR X=~X; LED2 =X; Then also I'm getting same output(no blinking)...
  4. sanjusony

    [PIC] External Interrupt for PIC16F882 (Working on Simulation(Proteus) but not in Hardwar )

    In Actual hardware I used 330ohms resistor series with LED2 and LED1. There is no problem with simulation. LED2 will blink only at button press. LED1 blink continuously(In this code I stopped using "while(1);") But when it comes to hardware there is no response at LED2(In Interrupt). the...
  5. sanjusony

    [PIC] External Interrupt for PIC16F882 (Working on Simulation(Proteus) but not in Hardwar )

    The circuit is attached Code for those..... MPLAB X C8 Compiler #include <xc.h> #define _XTAL_FREQ 20000000 #define LED1 PORTCbits.RC3 #define LED1_TRIS TRISCbits.TRISC3 #define LED2 PORTCbits.RC1 #define LED2_TRIS TRISCbits.TRISC1 void interrupt...
  6. sanjusony

    DB9 methodology with microcntroller

    Connect RX(with a pull-up is good) & TX to micro controller. This will make the RS 232 Communication..
  7. sanjusony

    [PIC] How can I generate delay in microseconds of any value for PIC18F4550?

    If you are using MPLAB X IDE for generating delay two MACRO's are available //*********from (MPLAB Compiler User’s Guide)******* __DELAY_MS, __DELAY_US Synopsis __delay_ms(x) // request a delay in milliseconds __delay_us(x) // request a delay in microseconds Description As it is often...
  8. sanjusony

    [PIC] External Interrupt for PIC16F882 (Working on Simulation(Proteus) but not in Hardwar )

    // Program(For PIC16F882 MP lab X IDE) is not working on Hardware even though its working in simulation.:bang::bang::bang::bang: Description //*********************************************************************************************************// /* * File : ExtIntrToggle.c * * IDE ...

Part and Inventory Search

Back
Top