MySMSYS
|
|
sim_emrom | Дата: Четверг, 25.09.2008, 13:30 | Сообщение # 1 |
Человек
Имя: Сергей
С нами с: 04.05.2007
Сообщений: 1756
Модель телефона: Realme 8 Pro
Статус: Offline
| All about MySMSYS © BingK Remember: you always need to have up-to-date library to use MSS
Сообщение отредактировано sim_emrom - Вторник, 24.03.2009, 22:16 |
|
| |
BingK | Дата: Воскресенье, 09.11.2008, 05:48 | Сообщение # 201 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| to SliGo yes, i you want to use this elf to instead of the standard browser, you should undo that patch before a better sendsms function found. to sim_emrom now i have found the the reason, code like " wsprintf(ws, "str"); " only support 257 chars. fixed!
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
Сообщение отредактировано BingK - Воскресенье, 09.11.2008, 05:49 |
|
| |
Benlux | Дата: Воскресенье, 09.11.2008, 15:08 | Сообщение # 202 |
Сержант
Имя: Luki
С нами с: 11.09.2008
Сообщений: 38
Модель телефона: EL71v45
Статус: Offline
| Updated IMG for ELKA, and add lang_sk.txt
|
|
| |
BingK | Дата: Воскресенье, 09.11.2008, 17:32 | Сообщение # 203 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| v2.2.3 2008.11.09 1.fix, sometime the sms status has been changed, but it till vibra or show have new sms icon 2.fix, now translit support more than 257
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
|
|
| |
SimaFish | Дата: Воскресенье, 09.11.2008, 19:54 | Сообщение # 204 |
Сержант
Имя: Андрей
С нами с: 23.10.2008
Сообщений: 20
Модель телефона: A31v5, CXV70v50, S75v52
Статус: Offline
| BingK, what about smiles support?
CXV70v50 + patches, A31v5, A55->C55v24, А70v32 S75v52 + ElfPack v2.3, MPv14 + patches, HHB-700, 1Gb RS-MMC ASUS M50Sa 2.5Ghz, 4Gb RAM, 1Gb VRAM, 500Gb, Blu-Ray
|
|
| |
Dales | Дата: Понедельник, 10.11.2008, 10:00 | Сообщение # 205 |
Рядовой
Имя: Dales
С нами с: 10.11.2008
Сообщений: 17
Модель телефона: S75v52,EL71v45
Статус: Offline
| BingK,and what about the sms report of the send sms - that it come to the person you're sent to?
|
|
| |
BingK | Дата: Понедельник, 10.11.2008, 11:47 | Сообщение # 206 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| to SimaFish I would not add smiles support, but others can. And I would only do the fix bug work from now on. to Dales I know, but the SendSMS funtion do not support that.
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
|
|
| |
Dales | Дата: Понедельник, 10.11.2008, 12:04 | Сообщение # 207 |
Рядовой
Имя: Dales
С нами с: 10.11.2008
Сообщений: 17
Модель телефона: S75v52,EL71v45
Статус: Offline
| BingK,it means that You don't do that? Maybe some alternative methods?As far as I know, there is another way...Some operators send you sms report, if you write one symbol at the begining of the sms, but I don't know what the symbol
|
|
| |
BingK | Дата: Понедельник, 10.11.2008, 14:50 | Сообщение # 208 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| to Dales yes, i don't know how to do that. ------------------------------------------------------------ v2.2.4 2008.11.10 1.fix, find name by num 2.add SMSYS_IPC_SEND_WS to Create new WSHDR some example, create new sms via ipc : Code #include "MySMSYS_ipc.h"
IPC_REQ my_ipc= { my_ipc_name, my_ipc_name, NULL };
//Create New SMS by number void CreateNewSMS_NUM(char *num) { char *data; data=malloc(strlen(num)); strcpy(data, num); LockSched(); my_ipc.data=data; GBS_SendMessage(MMI_CEPID,MSG_IPC,SMSYS_IPC_NEWSMS_NUM,&mss_ipc); UnlockSched(); }
//Create New SMS by utf8-text void CreateNewSMS_NUM(char *text) { char *data; data=malloc(strlen(text)); strcpy(data, text); LockSched(); my_ipc.data=data; GBS_SendMessage(MMI_CEPID,MSG_IPC,SMSYS_IPC_SEND_UTF8,&mss_ipc); UnlockSched(); }
//Create New SMS by WSHDR-text void CreateNewSMS_WS(WSHDR *text) { WSHDR *data; data=AllocWS(text->wsbody[0]); wstrcpy(data, text); LockSched(); my_ipc.data=data; GBS_SendMessage(MMI_CEPID,MSG_IPC,SMSYS_IPC_SEND_WS,&mss_ipc); UnlockSched(); }
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
Сообщение отредактировано BingK - Понедельник, 10.11.2008, 14:52 |
|
| |
SimaFish | Дата: Понедельник, 10.11.2008, 21:18 | Сообщение # 209 |
Сержант
Имя: Андрей
С нами с: 23.10.2008
Сообщений: 20
Модель телефона: A31v5, CXV70v50, S75v52
Статус: Offline
| Quote And I would only do the fix bug work from now on. This means that you stoped work on elf functionality, just doing fixes?
CXV70v50 + patches, A31v5, A55->C55v24, А70v32 S75v52 + ElfPack v2.3, MPv14 + patches, HHB-700, 1Gb RS-MMC ASUS M50Sa 2.5Ghz, 4Gb RAM, 1Gb VRAM, 500Gb, Blu-Ray
|
|
| |
BingK | Дата: Вторник, 11.11.2008, 10:29 | Сообщение # 210 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| Quote This means that you stoped work on elf functionality, just doing fixes? yes, now i think all is enough. if anybody makes some mod edition, do remember to share the sources.
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
|
|
| |
BingK | Дата: Вторник, 11.11.2008, 17:34 | Сообщение # 211 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| i made a MySMSYS + MegaDial = MssMD. and did some change in megadial: if the dial gui is created by "use number" in call records, the list would be shown. it use an other gui_id: #define DISPLACE_OF_EDGUI_ID2 0x38 #define edialgui_id2 (((int *)icsm)[DISPLACE_OF_EDGUI_ID2/4]) if you want show the list of megadial at once. try to port and apply this patch, it send a ipc on dial gui created. megadial just need a message to active it. the source is for s7cv47 Code #define EDIAL_MSG_CRT 1 #define MMI_CEPID 0x4209 #define MSG_IPC 0xDEB0 RSEG EDIAL_CRT_IPC_BODY CODE32 EDIAL_CRT_IPC_CODE ADD R3, LR, #3 LDRB R3, [R3, R1] LSL R3, R3, #1 ADD LR, LR, #6 ADD LR, LR, R3 CMP R1, #1 BXNE LR STMFD SP!,{R0-R7, LR} MOV R0, #0x9 ORR R0, R0, #0x4200 MOV R1, #0xB0 ORR R1, R1, #0xDE00 MOV R2, #EDIAL_MSG_CRT LDR R3, =EDIAL_IPC_REQ SWI 0x0100 //GBS_SendMessage LDMFD SP!,{R0-R7, PC} DATA EDIAL_IPC_REQ DCD EDIAL_IPC_NAME DCD EDIAL_IPC_NAME DCD 0 EDIAL_IPC_NAME DCD "EDialCrt" RSEG EDIAL_CRT_IPC_HOOK CODE16 L DR R3, =EDIAL_CRT_IPC_CODE BLX R3
-Z(CODE)EDIAL_CRT_IPC_HOOK=A02FB18C-FFFFFFFF -Z(CODE)EDIAL_CRT_IPC_BODY=A1563800-FFFFFFFF sources of MssMD http://sieelf.googlecode.com/svn/SieELF/MySMSYS/MssMD
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
Сообщение отредактировано BingK - Вторник, 11.11.2008, 17:39 |
|
| |
Dales | Дата: Вторник, 11.11.2008, 20:11 | Сообщение # 212 |
Рядовой
Имя: Dales
С нами с: 10.11.2008
Сообщений: 17
Модель телефона: S75v52,EL71v45
Статус: Offline
| Sorry, I find one bug...But maybe it only in my phone. When MySMSYS daemon is running - In the idle display I press key(any 0-9) and then press center key(open menu) and in this menu the phone not answered for commands,for pressing any key....When I close MySMSYS daemon - everything is OK
|
|
| |
windes | Дата: Вторник, 11.11.2008, 20:24 | Сообщение # 213 |
Сержант
Имя: Dmitry
С нами с: 27.10.2008
Сообщений: 27
Модель телефона: S75v47
Статус: Offline
| And more bugs :-) sometimes there is pick-off at starting gui of elf. S-Exit: P-Exit / 0205 Filename: Data_Abort! String: 'Address: 0xA8754CE8' CepID: 0x4209 CPSR: 0xA0000010 Adr: 0xA8754CE8 Chksum: 0000 And (sometimes) after recieving short (1 segment) sms, it goes to elf empty! So, we have number, time, and empty text field. In phone in this case there is same empty sms, but we test, and know, that text was! Eh, sad, that no adding functionality to elf now.. Have other interest project now, BingK?
gl 2 us..
|
|
| |
huteusz | Дата: Вторник, 11.11.2008, 21:51 | Сообщение # 214 |
Генерал-лейтенант
Имя: Mateusz
С нами с: 18.01.2008
Сообщений: 490
Модель телефона: e71v45 / cxt70v56
Статус: Offline
| BingK, am i blind, or there isn't an option to "Delete ALL SMS?" It would be good to make an option "Mark" to make operations with more sms. Or maybe i haven't seen something
:( siemens is dead
|
|
| |
sim_emrom | Дата: Среда, 12.11.2008, 02:11 | Сообщение # 215 |
Человек
Имя: Сергей
С нами с: 04.05.2007
Сообщений: 1756
Модель телефона: Realme 8 Pro
Статус: Offline
| offtop. 2 BingK: Knowing delete functions etc., can we repair function of sms deleting in E/EL71 browser? I tried to find something, but I'm too stupid E71v45. Supported by ARM_Debugger I tried to delete sms and move sms to archive, even with SiMoCo... I go by LR-address from libr.functions, so it seems functions somehow depend on: l_A0D6EAC0: 02 A9 ADD R1, SP, #8 Move to Archive A0D6EBDA 28 1C MOV R0, R5 Delete sms Example of deleting 1-segmented sms by SiMoCo: * 217 A0D6EBF4: CPSR=nzcv R0=00000009 R4=AD6111B4 R8=00000000 R12=80000000 R1=AD256AD4 R5=AD60B2B8 R9=A081777C LR=A0FD3EE1 R2=00657079 R6=00000001 R10=AD250D14 R3=00000076 R7=AD6111B4 R11=AD256D10 * 218 A0B5721A: CPSR=nzcv R0=00000049 R4=00000049 R8=00000000 R12=A0B57217 R1=AD256A1C R5=00000000 R9=A081777C LR=A0D7021F R2=0000001F R6=00000001 R10=AD250D14 R3=00000001 R7=00000001 R11=AD256D10 * 219 A0B5721A: CPSR=nZCv R0=00000049 R4=AD6111B4 R8=00000000 R12=A0B57217 R1=AD256B30 R5=AD60B2B8 R9=A081777C LR=A0D6EBF5 R2=0000001F R6=00000001 R10=AD250D14 R3=AD256B20 R7=AD6111B4 R11=AD256D10 * 220 A0D6EBF4: CPSR=nzcv R0=00000470 R4=AD6111B4 R8=00000000 R12=A0093B4F R1=00000000 R5=AD60B2B8 R9=A081777C LR=A009F2AC R2=A09C220C R6=00000001 R10=AD250D14 R3=AD1022DC R7=AD6111B4 R11=AD256D10 A0D6EBF4 is snappoint in which we can see sms is going to be deleted, but it's only deleting in Browser's files (messages.db?). It always traces once when we trying to delete sms in Browser. A009F2AC is seemed to be part of AT-command system, 'cause it only appears with SiMoCo. who wanna help me? BingK, can you help without your e71?
|
|
| |
BingK | Дата: Среда, 12.11.2008, 05:51 | Сообщение # 216 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| to sim_emrom sorry, i can't understand that and can't give you any help at that. to huteusz I know, and have think about that, but that is difficult, and you know that we can't delete lots of sms from sms.dat quickly. the hotkey '7' for delete sms in sms list menu is enough. to Dales you mean MySMSYS or MssMD ? I don't have such a problem at using either of then. to windes I have never got a pick-off at gui started. you'd better disable "Save As File Real Time" to make less blank sms. what i can do is try my best to make less blank sms, not kill all blank sms. and i will be busy in the next days, no other project. MySMSYS is my favorate forever。
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
Сообщение отредактировано BingK - Среда, 12.11.2008, 05:55 |
|
| |
BingK | Дата: Среда, 12.11.2008, 06:01 | Сообщение # 217 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| bug fix for MssMD fix pick-off at long press * or # key. if you want to show megadial list at "use number" in call records, you should apply the "SendIpcOnEDialCreate" patch.
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
|
|
| |
SimaFish | Дата: Среда, 12.11.2008, 08:14 | Сообщение # 218 |
Сержант
Имя: Андрей
С нами с: 23.10.2008
Сообщений: 20
Модель телефона: A31v5, CXV70v50, S75v52
Статус: Offline
| I don't understand what is MssMD.elf, explain it to me please.
CXV70v50 + patches, A31v5, A55->C55v24, А70v32 S75v52 + ElfPack v2.3, MPv14 + patches, HHB-700, 1Gb RS-MMC ASUS M50Sa 2.5Ghz, 4Gb RAM, 1Gb VRAM, 500Gb, Blu-Ray
|
|
| |
BingK | Дата: Среда, 12.11.2008, 08:43 | Сообщение # 219 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| to SimaFish MssMD = MySMSYS + MegaDial because MySMSYS have read the full Addressbook data, so megadial could ConstructList quickly.
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
|
|
| |
Dales | Дата: Среда, 12.11.2008, 11:28 | Сообщение # 220 |
Рядовой
Имя: Dales
С нами с: 10.11.2008
Сообщений: 17
Модель телефона: S75v52,EL71v45
Статус: Offline
| BingK, I mean MySMSYS.....The phone S75/47
|
|
| |
sim_emrom | Дата: Среда, 12.11.2008, 14:48 | Сообщение # 221 |
Человек
Имя: Сергей
С нами с: 04.05.2007
Сообщений: 1756
Модель телефона: Realme 8 Pro
Статус: Offline
| Can you make MegaDial x3 as separate elf? Some wishes for it: Support showing only displ.name, name or family name. It's very hard to sort and select quickly necessary name from such awful list. Disable MD functionality if first typed button is 1, * or #. Especially for *, because we need Down button usable for add numbers from AB quickly. Example: *123*+795050.....# is ussd to send free sms with text "Call me". I just push Down to see AB. And tell more about patch, I don't understand its meaning.
|
|
| |
ahk | Дата: Среда, 12.11.2008, 15:07 | Сообщение # 222 |
Сержант
Имя: Александър
С нами с: 30.07.2008
Сообщений: 22
Модель телефона: EL71v45
Статус: Offline
| Is there anybody with E71 or EL71, which SLI is blinking when there is an unread SMS? Starting from v2.2.2 2008.11.08 mine dosn't. And before that I didn't have any problems with stopping of the blinking, like Benlux had.
|
|
| |
BingK | Дата: Четверг, 13.11.2008, 14:25 | Сообщение # 223 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| v2.2.5 2008.11.13 1.send sms in the backround, use some code from xtask, ®Rst7 2.add a sending sms icon to the iconbar 3.fix that may caused reloading the sms data list and addressbook data list 4.fix that SLI blink can not be stop 5.after input the number you want to send to by hand, it would try to show you the name.
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
Сообщение отредактировано BingK - Четверг, 13.11.2008, 14:35 |
|
| |
BingK | Дата: Четверг, 13.11.2008, 14:32 | Сообщение # 224 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| MssMD = MySMSYS + MegaDial based on MySMYS 2.2.5 Just for fun. if you like it, compile it by yourself. http://sieelf.googlecode.com/svn/SieELF/MySMSYS/MssMD
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
|
|
| |
BingK | Дата: Четверг, 13.11.2008, 15:57 | Сообщение # 225 |
Подполковник
Имя: BingK
С нами с: 03.08.2008
Сообщений: 100
Модель телефона: S75/S68/SK65
Статус: Offline
| Code ;Disable "Message Sent!" ;(c)BingK ;S7Cv47 05FF624: A5F0FCEE C0460020 disable the message after send sms successfully.
S7Csw47[MasterPack+ELFPack] S68Csw51[MasterPack+ELFPack] SK6Csw50[ELFPack] DCA- 510/540/110/140 I am From China !
|
|
| |