http://marcin-wiacek.fkn.pl/english/zips/mygnokii.tar.gz
[gnokii.git] / Docs / developers / other / dmcp / readme
diff --git a/Docs/developers/other/dmcp/readme b/Docs/developers/other/dmcp/readme
new file mode 100644 (file)
index 0000000..fe34861
--- /dev/null
@@ -0,0 +1,148 @@
+\r
+1.see Smart Messaging 2.0 for info, what the DMCP is\r
+\r
+2.I didn't have success in changing menus via cable (without sending SMS).\r
+  Here is example foogle funtion. You will see only "Nokia service update failed"\r
+------------------------------------\r
+int foogle(char *argv[])\r
+{\r
+  GSM_NetworkInfo NetworkInfo;\r
+  int i;\r
+\r
+  char buffer[100]= { 0x0c, 0x01,\r
+                            0x06,  /* User Data Header Length */\r
+                            0x05,  /* IEI: application port addressing scheme, 16 bit address */\r
+                            0x04,  /* IEDL (IED length ?) */\r
+                            0x15,  /* destination address: high byte */\r
+                           0x84,  /* destination address: low byte */\r
+                            0x00,  /* originator address: high byte */\r
+                           0x00}; /* originator address: low byte */\r
+\r
+  int MSGLEN=9;\r
+\r
+  /* Initialise the code for the GSM interface. */     \r
+\r
+  fbusinit(NULL);\r
+\r
+  buffer[MSGLEN++]='B';\r
+  buffer[MSGLEN++]='O';     \r
+  buffer[MSGLEN++]='D';\r
+  buffer[MSGLEN++]='Y';\r
+  buffer[MSGLEN++]=':';\r
+  buffer[MSGLEN++]=10;\r
+  buffer[MSGLEN++]='I';\r
+  buffer[MSGLEN++]='A';\r
+  buffer[MSGLEN++]=':';\r
+  buffer[MSGLEN++]=10;\r
+  buffer[MSGLEN++]='O';\r
+  buffer[MSGLEN++]='P';\r
+  buffer[MSGLEN++]='E';\r
+  buffer[MSGLEN++]='R';\r
+  buffer[MSGLEN++]=' ';\r
+  buffer[MSGLEN++]='a';\r
+  buffer[MSGLEN++]='l';\r
+  buffer[MSGLEN++]=10;\r
+  buffer[MSGLEN++]='L';\r
+  buffer[MSGLEN++]='i';\r
+  buffer[MSGLEN++]='n';\r
+  buffer[MSGLEN++]='k';\r
+  buffer[MSGLEN++]=10;\r
+  buffer[MSGLEN++]='N';\r
+  buffer[MSGLEN++]=10;\r
+  buffer[MSGLEN++]=10;\r
+  buffer[MSGLEN++]='M';\r
+  buffer[MSGLEN++]=' ';\r
+  buffer[MSGLEN++]='S';\r
+  buffer[MSGLEN++]='M';\r
+  buffer[MSGLEN++]='S';\r
+  buffer[MSGLEN++]=10;\r
+  buffer[MSGLEN++]='+';\r
+  buffer[MSGLEN++]='4';\r
+  buffer[MSGLEN++]='8';\r
+  buffer[MSGLEN++]='6';\r
+  buffer[MSGLEN++]='0';\r
+  buffer[MSGLEN++]='2';\r
+  buffer[MSGLEN++]='9';\r
+  buffer[MSGLEN++]='5';\r
+  buffer[MSGLEN++]='1';\r
+  buffer[MSGLEN++]='1';\r
+  buffer[MSGLEN++]='1';\r
+  buffer[MSGLEN++]='1';\r
+  buffer[MSGLEN++]='/';\r
+  buffer[MSGLEN++]='+';\r
+  buffer[MSGLEN++]='4';\r
+  buffer[MSGLEN++]='8';\r
+  buffer[MSGLEN++]='6';\r
+  buffer[MSGLEN++]='0';\r
+  buffer[MSGLEN++]='2';\r
+  buffer[MSGLEN++]='9';\r
+  buffer[MSGLEN++]='5';\r
+  buffer[MSGLEN++]='1';\r
+  buffer[MSGLEN++]='1';\r
+  buffer[MSGLEN++]='1';\r
+  buffer[MSGLEN++]='1';\r
+\r
+  for (i=0;i<MSGLEN;i++) {\r
+    fprintf(stdout,_("%c"),buffer[i]);\r
+  }\r
+\r
+  Protocol->SendMessage(MSGLEN, 0x12, buffer);\r
+  GSM->GetNetworkInfo(&NetworkInfo); //need to make something\r
+\r
+  \r
+  GSM->Terminate();\r
+\r
+  return 0;\r
+}\r
+-----------------------------------\r
+3.to change via SMS - read parts of email sent by Martin Lucina [mato@kotelna.sk]\r
+-----------------------------------\r
+\r
+1. First of all, use the OPER (Operator) services rather than the Nokia\r
+   services. There's probably no reason why you couldn't use either but\r
+   there may be extra hooks in the phone firmware regarding Nokia\r
+   services that I don't know about.\r
+\r
+2. Make sure that "Operator access number 1" and "Operator access number\r
+   2" are set correctly in the services menu. The former should be set\r
+   to the SMS centre the messages you send are going to come from\r
+   (important, send yourself a test message and check it's details, some\r
+   operators set the sending SMSC number to one different from the one\r
+   you originally sent the message to). The latter should be the number\r
+   of the MS you are sending the SMS from.\r
+\r
+3. Don't send the messages as binary NBS messsages using the UDH. I\r
+   haven't been able to get this method to work and besides, the //SCK\r
+   compatibility header works just fine. \r
+   \r
+   Also, while I haven't seen this, it's possible that if you send a\r
+   message in binary format, the destination MS will reply in binary\r
+   format. This makes the reply useless if you are sending from another\r
+   NBS-aware phone, since the NBS router will most likely silently\r
+   discard it (or try to forward it to the phones TTML/DMCP server,\r
+   which won't help either). \r
+   \r
+   If you send the messages as text, the replies I've seen also come\r
+   back as text so you can retrieve them from the phone in the normal\r
+   fashion.\r
+\r
+One caveat I've noticed with sending NBS messages using the //SCK\r
+compatibility header is that the NBS grammar in the Nokia SM spec\r
+version 2 contradicts the grammar in the original Intel NBS spec. Nokia\r
+says you can using either a newline or space as the delimiter after\r
+"//SCK", it turns out that you _must_ use a space (as stated in the\r
+Intel spec). Of course you can still stick a newline in afterwards.\r
+\r
+I have attached a test file that will add two menu items that send SMS\r
+messages to your services menu. I send this to the phone using\r
+\r
+$ sendsms +6421XXXXXX < addsms\r
+\r
+[...]\r
+\r
+Cheers,\r
+\r
+-- \r
+Martin Lucina http://www.kotelna.sk/mato/ Wellington, New Zealand             \r
+I've always been mad I know I've been mad like the most of us are             \r
+Pretty hard to explain why you're a madman even if you're not mad             \r