|
![]() |
|
Welcome to the GSM-Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
| |||||||
| Register | FAQ | Donate | Forum Rules | ★. iPhone Unlock .★ | -= JTAG BOOM =- | Search | Today's Posts | Mark Forums Read |
| GSM Programming & Reverse Engineering Here you can post all Kind of GSM Programming and Reverse Engineering tools and Secrets. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Crazy Poster ![]() ![]() ![]() Join Date: May 2008 Location: Poland ;) Age: 27
Posts: 57
Member: 776944 Status: Offline Thanks: 49
Thanked 25 Times in 14 Posts
| Strange problem with connecting to S5230 via USB... Hi. I'm starting to deal with USB port so i decided to start with some basics. I choosed S5230, target = get access to modem via AT Commands, butI have a little problem with this... I sniffed a lot of packets from New PC Studio for beginning, & i see there is few packets to Set Communication mode To AT. So i wrote a lil program to switch to AT Mode, basing on sniffed packets, later few AT queries to test it (GET MODEL, GET IMEI, GET PRODUCT CODE, GET SW VERSION etc) and everything is OK - program works great but... and there's a problem : Communication works properly ONLY When PC Studio is launched! O.o I checked Sniff log few times (sniffed packets from PC Studio), and i dont see any packet i missed. Interesting thing: When I close PC Studio & run sniffer to sniff my program vs. phone, it shows that phone send response packets for my AT Commands properly, but my program didnt show any packet @ Memo. If I run PC Suite, program works great. Someone can tell me whats goin on? Here's a part of source (becouse I developed it only for educational purposes, the code looks ugly) Here's a chain of Initial packets... Packets starting from 0x41 are AT commands... Code: const ATPacket: Array[0..11] of String = ('00C20100000008', '00C20100000008','7E00A072557E', '810003', '41545A0D0A', '41542B474D4D0D', '41542B4347534E0D', '41542B53575645523F0D', '41542B50524F44554354434F44453F0D0A', '41542B435042533F0D', '41542B435042533D22534D220D', '41542B435042523D'); Code: var Str: String;
i: byte;
F: String;
begin
if USB.USBOpenDriver then //yea, I'm using oOXTCOo's unit to deal with USB :P
begin
Memo1.Lines.Add('Successfully Opened');
Memo1.Lines.Add('Switching to AT-Mode...');
Pb.Max:=High(ATPacket); //thats only Progress Bar :D
for i:=Low(ATPacket) to High(ATPacket) do
begin
PB.Position:=i; //increase progress bar position
Str:=USB.RWUSB(ATPacket[i], 255, 200, 'STRING');
if Length(Str)>0 then // if got some stuff from phone then...
Memo1.Lines.Add('#:'+Str);
end;
Memo1.Lines.Add('Finished'); |
|
| The Following User Says Thank You to McManiek For This Useful Post: |
| | #2 (permalink) |
| Moderator ![]() Join Date: Nov 2009 Location: Perú
Posts: 1,246
Member: 1159099 Status: Offline Sonork: 100.1592508 Thanks: 47
Thanked 6,006 Times in 872 Posts
| Hi McManiek, how send atcommand with usb VB2008 use comport Code: rxBuff = ""
If SerialPort1.IsOpen = False Then SerialPort1.Open()
SerialPort1.Write("AT+SW?." & vbCr)
System.Threading.Thread.Sleep(800)
If SerialPort1.IsOpen = True Then SerialPort1.Close()
If rxBuff = "" Then GoTo ends
RichTextBox1.Text = rxBuff Pablo A. |
|
| | #3 (permalink) |
| Product Manager ![]() ![]() ![]() ![]() ![]() Join Date: Sep 2004 Location: PHILIPPINES Age: 36
Posts: 504
Member: 81952 Status: Offline Sonork: 1597268 Thanks: 83
Thanked 1,879 Times in 192 Posts
| close pcstudio and use comport communication.. set baudrate... try to use this component ComPort Library | Free Communications software downloads at SourceForge.net br, ulymar |
|
| The Following User Says Thank You to ulymar For This Useful Post: |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| thread | Thread Starter | Forum | Replies | Last Post |
| How to add a language in 51xx/61xx | tati | Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) | 8 | 05-21-2013 19:20 |
| How to upload a new firmware... | Brand | Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) | 28 | 08-30-2012 03:40 |
| news headlines to gsm phone | mos | Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) | 6 | 12-18-2011 11:00 |
| Help with 6110 | paulomt1 | Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) | 3 | 05-25-2009 16:29 |
| Netmonitor with FBus???? | ratzfatz | Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) | 4 | 06-09-1999 17:04 |