Search:

Type: Posts; User: Jovin Basil

Search: Search took 0.01 seconds.

  1. Replies
    18
    Views
    3,066

    ok.i got it now.

    ok.i got it now.
  2. Replies
    18
    Views
    3,066

    in the first case only a will be a pointer and in...

    in the first case only a will be a pointer and in the second case both c and d will be a pointer.that's what it means.So there is no difference in its usage.only difference is while we declare.am i...
  3. Replies
    18
    Views
    3,066

    Sorry guys.i was busy with a project.i read...

    Sorry guys.i was busy with a project.i read everything you guys posted and the thread posted by TEIAM really worked for me.i am posting my final code here and also pic.h wasn't necessary because i...
  4. Replies
    18
    Views
    3,066

    i tried it.but i got these errors *** Error 32...

    i tried it.but i got these errors

    *** Error 32 "D:\Beginow\Mplab\gsmcheck.c" Line 9(25,29): Expecting a , or )
    *** Error 48 "D:\Beginow\Mplab\gsmcheck.c" Line 9(26,28): Expecting a (
    *** Error...
  5. Replies
    18
    Views
    3,066

    #include #device ADC=10 //for 10 bit...

    #include <16F877A.h>
    #device ADC=10 //for 10 bit resolution
    #include "pic.h"
    #use delay(CLOCK=20000000)
    #use rs232(baud=9600,xmit=PIN_C6,rcv=PIN_C7,stream=pc)
    #use...
  6. Replies
    18
    Views
    3,066

    char function call

    void smssend(char *b1,char *b2)
    {
    printf(gsm,"AT+CMGF=1\r");
    printf(gsm,"AT+CMGS=");
    putc(34,gsm);
    printf(gsm,"%s",b1);
    putc(34,gsm);
    printf(gsm,"\r");
    printf(gsm,"%s",b2);
    ...
Results 1 to 6 of 6