X-Git-Url: http://git.jankratochvil.net/?p=gnokii.git;a=blobdiff_plain;f=common%2Fphones%2Fnk7110.c;h=0e4c43b7119beceb3224ffc27b09b51cc5ba3f11;hp=67fc0f13f8f3d406ab1b61c14ee97426375911de;hb=af2b6d91a335e0f0a6dd0f487c7e5ddadf6d4bfc;hpb=bcc8fc57c069077c966278c0af16a6d9f39ea181 diff --git a/common/phones/nk7110.c b/common/phones/nk7110.c index 67fc0f1..0e4c43b 100644 --- a/common/phones/nk7110.c +++ b/common/phones/nk7110.c @@ -17,8 +17,17 @@ The various routines are called P7110_(whatever). $Log$ - Revision 1.1.1.1 2001/11/25 21:59:13 short - :pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Sun Nov 25 22:56 CET 2001 + Revision 1.1.1.1.8.1 2001/11/27 23:06:09 short + Update: orig2001_11_27_05_17 -> orig2001_11_27_22_58 + + Revision 1.1.1.1.2.1 2001/11/27 22:48:37 short + Update: orig2001_11_27_05_17 -> orig2001_11_27_22_58 + + Revision 1.1.1.2 2001/11/27 22:01:19 short + :pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Tue Nov 27 22:58 CET 2001 + + Revision 1.28 2001/11/27 12:25:01 pkot + Cleanup Revision 1.27 2001/11/22 17:56:53 pkot smslib update. sms sending @@ -904,14 +913,11 @@ static GSM_Error P7110_GetSMSFolderStatus(GSM_Data *data, GSM_Statemachine *stat static GSM_Error P7110_SendSMS(GSM_Data *data, GSM_Statemachine *state) { unsigned char req[256] = {FBUS_FRAME_HEADER, 0x01, 0x02, 0x00}; - unsigned char smsc_req[] = {FBUS_FRAME_HEADER, 0x33, 0x64, 0x00}; int length, i; if (data->SMSMessage->MessageCenter.No) { data->MessageCenter = &data->SMSMessage->MessageCenter; P7110_GetSMSCenter(data, state); -// SM_SendMessage(state, 6, 0x02, smsc_req); -// SM_Block(state, data, 0x02); } length = EncodePDUSMS(data->SMSMessage, req + 6); @@ -928,7 +934,7 @@ static GSM_Error P7110_SendSMS(GSM_Data *data, GSM_Statemachine *state) static GSM_Error P7110_IncomingSMS(int messagetype, unsigned char *message, int length, GSM_Data *data) { GSM_Error e = GE_NONE; - int digits, bytes, i; + int digits, bytes; if (!data) return GE_INTERNALERROR;