I would like to confirm the availability of 6610 support for PC Connectivity SDK 3.0 Beta. According to the SDK documentation, only the serial cable is supported. But I did manage to get the Nokia Connection Manager to recognize 6610 thru Infrared. However, when I tried to run any of the VB sample programs, it says that the phone is not connected by giving error message 7689.
Besides, I am manage to get PC Suite 5.0 to connect to the same 6610, using the same USB Infrared adaptor, using the same PC and Operating System (WinXP). I formatted the PC after installing PC Suite 5.0 to have a clean install of PC Connectivity SDK 3.0 Beta.
Can anyone please confirm that 6610 can only be connected to PC Connectivity SDK 3.0 Beta by using DKU-5 USB?
The error message 7689 means communication error between the device and the PC. (Error 7696 would mean phone is not connected.)
Make sure that there is no other application using the infrared connection at the same time and chcek the settings also.
The Connection Methods web page at http://forum.nokia.com/main/1,6566,1_55_30_20,00.html lists the cable and infrared connection for the Nokia 6610 model.
Notice that the example appliations are not mant to work with every kind of phone models. For example Messaging works, but SMS Edit does not.
I tried to use 6610 with USB IrDA 1.1 and it works fine with PC Suite 5.0 and Oxygen 9.x but when i tried to use SDK, i'm able to get software version, hardware version etc. information but i'm not able to retrive any data or sending sms.
I'm also getting "7689" error while sending sms but while reading phone version information, it doens't give any error.
use following VB code and ur porblem is solved... I think nokia person's answer was crap. he does not even know the peoblem..
--------------------------------------------------------------------------
Private smsObj As NokiaCLMessaging.ShortMsgAdapter
Private SubmitObj As NokiaCLMessaging.IGSMSubmit
Private Sub Command1_Click()
SendSMS
End Sub
Private Sub Command2_Click()
SendConcatenatedSMS
End Sub
Private Sub Form_Load()
Set smsObj = New NokiaCLMessaging.ShortMsgAdapter
End Sub
Private Sub Form_Unload(Cancel As Integer)
Set smsObj = Nothing
End Sub
Private Sub SendSMS()
On Error GoTo ErrorTrap
Dim smsEntry As NokiaCLMessaging.ShortMessageItem
Set smsEntry = New NokiaCLMessaging.ShortMessageItem
smsEntry.Type = SHORTMESSAGE_TYPE_GSM_SUBMIT
Set SubmitObj = smsEntry.TypeProperties
headerArray(0) = 5 'Header Length
headerArray(1) = 0 'concatenated message
headerArray(2) = 3 ' Length of information elimatent A
headerArray(3) = 10 'reference number ; it should be same for all concat messages
headerArray(4) = 2 ' 2 messages
headerArray(5) = 1 'sequence number of SMS
headerArray(0) = 5 'Header Length
headerArray(1) = 0 'concatenated message
headerArray(2) = 3 ' Length of information elimatent A
headerArray(3) = 10 'reference number ; it shout be same for all concat msg.
headerArray(4) = 2 ' 2 messages
headerArray(5) = 2 'sequence number of SMS
Thanks for the tremendous help! When I was digging in the SDK, it did not say which Reference to use for which phone....Nokia's bad..... or it's probably me not digging hard enough But Barna_FN did quote "Notice that the example appliations are not mant to work with every kind of phone models. For example Messaging works, but SMS Edit does not.
"
Have you got any examples about reading phonebook from N6610?
Like Nathenliew, When I read phonebook from N6610 by SDK 3.0, it noticed error 7689 and disconnected. But when I read other informations(Message Center, send SMS), it was right.
I want to a (VB6) code for writing to the PHONEBOOK , using
IPhonebook3 interface and Icontact2 object for Nokia (6600,6610,7250i) Can You help me please , does the method (setcontact) support for this moble models.
I have had reasonable success with the .getcontact and .setcontact methods of the Iphonebook3 and Icontact 2 Interface with a 6610i. I am struggling with the .getmemorycaps at the moment. Anyone had any success? I also can't get the .deletecontact to work.
Matt
Error #7689 in reading phonebook entery
2005-02-20, 15:18#10
Originally posted by mattlindsay I have had reasonable success with the .getcontact and .setcontact methods of the Iphonebook3 and Icontact 2 Interface with a 6610i. I am struggling with the .getmemorycaps at the moment. Anyone had any success? I also can't get the .deletecontact to work.
Matt
hi, mattlindsay, would you like to paste the codes of get/setcontact?
thanks
Re: 6610 support for PC Connectivity SDK 3.0 Beta
2008-10-16, 06:29#11