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...
Bookmarks