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 kishan s m

  1. K

    adc not getting output on hyperterminal

    hey,now i am getting output on hyperterminal.. but now i want to display from 0 to 1023... so,can anyone help me....
  2. K

    adc pic16f877a mplab hi-tech c compiler not working

    adc not getting output on hyperterminal: #include<pic.h> void serial() { SPBRG=25; SYNC=0; BRGH=1; SPEN=1; TXEN=1; } int ADCvalue = 0; void main(void) { serial(); TRISA =0x0FF; TRISD=0x00; TRISE=0x00; ADCON0 = 0x05; ADCON1...
  3. K

    adc not getting output on hyperterminal

    hey,i am using real pic simulator. i am when loading this program,i am getting buad rate=5000;instead of 9600.. now,please tell me where is the mistake in my program?????
  4. K

    adc not getting output on hyperterminal

    i want to display my output on hyperterminal,but i am getting nothing..:(
  5. K

    adc not getting output on hyperterminal

    #include<pic.h> void serial() { SPBRG=25; SYNC=0; BRGH=1; SPEN=1; TXEN=1; } int ADCvalue = 0; void main(void) { serial(); TRISA =0x0FF; TRISD=0x00; TRISE=0x00; ADCON0 = 0x05; ADCON1 = 0x0CE; while(1) { PORTA=0X01; PORTD=0X00; PORTE=0X03; ADON=1; GODONE=1; while(GODONE!=0); ADCvalue =...
  6. K

    adc for pic16f877a problem

    i am not getting the output. here is my code: #include<pic.h> void serial() { SPBRG=25; SYNC=0; BRGH=1; SPEN=1; TXEN=1; } int ADCvalue = 0; void main(void) { serial(); TRISA =0x0FF; TRISD=0x00; TRISE=0x00; ADCON0 = 0x05; ADCON1 = 0x0CE; while(1) { PORTA=0X01; PORTD=0X00...
  7. K

    ADC 16f877 code beginner help

    hi.. i am also using 16f887a,but i am not getting the output... please help me:( my code is: #include<pic.h> void serial() { SPBRG=25; SYNC=0; BRGH=1; SPEN=1; TXEN=1; } int ADCvalue = 0; void main(void) { serial(); TRISA =0x0FF; TRISD=0x00; TRISE=0x00; ADCON0 = 0x05; ADCON1 =...
  8. K

    adc for pic16f877a problem

    hello friends; i am new learner of pic. i am using mplab 8.56v and HI-TECH C compiler. i have done simple led blinking program. now,i want to do programming of adc of pic16f877a. i want to use simple 1 bit input as RA0 and output as PORTB or PORTD. i want to display my output on hyper terminal...

Part and Inventory Search

Back
Top