Help me about communicating PIC with cellular phone...


Results 1 to 14 of 14

Threaded View

  1. #8
    Join Date
    Nov 2006
    Posts
    8

    Default

    FBUS is a protocol that nokia phones are using. It is same as AT commands but a bit complex.
    I made the program as you said. but it doesn't work. FBus Rx&Tx means it is supported for serial connection for Nokia 7250i.


    INCLUDE "modedefs.bas"

    DEFINE OSC 4 ' Define clock Oscillator Frequency at 4Mhz
    DEFINE HSER_CLROERR 0

    OUTPUT PORTc.6
    INPUT PORTc.7
    PORTc = %00000000 ' Initial state of PORT C


    Main:

    ' Make a call

    serout2 portC.6, T9600, ["ATZ",13,10] ' Reset the phone
    Pause 1000

    serout2 portC.6, T9600, ["ATDT",34,"+905448515247",59,34,",129",13,10] ' Make a call for 15 sec.s 59 is ;
    PAUSE 15000

    serout2 portC.6, T2400, ["AT",13,10] ' Finish the call
    PAUSE 1000

    GOTO Main

    END


    Thanks...
    Last edited by d_hamen; - 4th November 2006 at 06:49.

Similar Threads

  1. SMS via pic
    By kenandere in forum GSM
    Replies: 15
    Last Post: - 10th March 2010, 10:00
  2. communication of pic 18f4520 and cell phone
    By Alisha in forum mel PIC BASIC Pro
    Replies: 1
    Last Post: - 10th February 2010, 11:47
  3. Replies: 288
    Last Post: - 25th August 2008, 16:53
  4. Replies: 2
    Last Post: - 12th September 2007, 08:08
  5. Serial Pic to Pic using HSER
    By Chadhammer in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 11th March 2005, 23:14

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts