This commit was manufactured by cvs2svn to create branch 'decode'.
[gnokii.git] / Docs / developers / other / RE RE.txt
diff --git a/Docs/developers/other/RE RE.txt b/Docs/developers/other/RE RE.txt
deleted file mode 100644 (file)
index 1652e4c..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-Do: Markus Plail\r
-Temat: RE: RE:\r
-\r
-\r
-Hi,\r
-\r
-> Sorry for the confusion. I wrote the subject (getsms for 6210) in \r
-> the CC field.\r
-No problem :-)\r
-\r
-> So this is what I want to try, in linux btw. U wrote that u can \r
-> give some information on that topic.\r
-OK. Good.\r
-\r
-First of all, you HAVE to understand, how/where are created all phone functions. Look into n7110.c for N7110_Functions. This is our structure for each function - getting SMS, etc. You have pointers to each function sending request.\r
-\r
-Example:  N6110_NetMonitor for netmonitor function.\r
-\r
-If each function (let's say N6110_NetMonitor) you send frame for phone:\r
------------------------------\r
-  unsigned char req[] = { 0x00, 0x01, 0x7e, 0x00 };\r
-  \r
-  GSM_Error error;\r
-  \r
-  error=N6110_EnableExtendedCommands(0x01);\r
-  if (error!=GE_NONE) return error;\r
-\r
-  CurrentNetmonitor=Screen;\r
-\r
-  req[3]=mode;\r
-\r
-  return N6110_SendMessageSequence\r
-    (20, &CurrentNetmonitorError, 4, 0x40, req);\r
----------------------------\r
-In req you prepare it (see 6110.txt/7110.txt for frame for netmonitor and compare it with req).\r
-\r
-First (this is specific for netmonitor and some other) need to send something, we call EnableExtendedCommands - we must send special frame and wait for answer. And ONLY after it phone will answer with 0x40 frames. For SMS in 6210 it's not required.\r
-\r
-After it we set pointer to structure given by user (pointers are declared in gsm-api.c & gsm-api.h): CurrentNetmonitor=Screen;\r
-\r
-Prepare frame send to phone...\r
-\r
-And use N6110_SendMessageSequence -> first is, how long we can wait for phone answer (20), next: what variable is used to see, if phone answered (I will later describe more - variable created in gsm-api.c & gsm-api.h), how many bytes in req, frame type and req.\r
-\r
-That's all here.\r
-\r
-All answers are handled in N7110_DispatchMessage\r
-\r
-In example look for:\r
-\r
-        fprintf(stdout, _("Message: Netmonitor menu %d received:\n"), MessageBuffer[3]);\r
-\r
-You copy formatted answer to structure pointed by CurrentNetmonitor (in example) and set CurrentNetmonitorError to GE_NONE (it makes, that N6110_SendMessageSequence returns: NO error). That's all.\r
---------------------\r
-If you understand, let's start:\r
-\r
-1.need to make new N7110_GetSMSFolders similiar to N6110_GetSMSFolders (send frame - it's described in 7110.txt: "Get folder names", wait for answer and return it) and set N7110_Functions to point on it (in line 127).\r
-\r
-After it we will be able to make "real" getsms...\r
-\r
-Any questions ?\r
-\r
-Pozdrowienia/Best Regards\r
---\r
-Marcin Wiacek -> mailto:marcinwiacek@topnet.pl http://marcin-wiacek.topnet.pl (http://www.fkn.pl/marcinw) -> netmonitor, firmware, mygnokii (GSM & Nokia)\r
-http://www.mds.mdh.se/~cel95eig/mygnokii/ & http://grumble.zereau.com/gnokii/ & http://reinhold.bachrain.de/ -> mygnokii mirrors
\ No newline at end of file