Care Unlock  
Your online unlock store
GSM-Forum  

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.

Go Back   GSM-Forum > Other Gsm/Mobile Related Forums > GSM Programming & Reverse Engineering

GSM Programming & Reverse Engineering Here you can post all Kind of GSM Programming and Reverse Engineering tools and Secrets.

Reply
 
LinkBack Thread Tools Display Modes
Old 02-22-2012, 23:46   #1 (permalink)
Product Supporter
 
orbita's Avatar
 
Join Date: Apr 2002
Location: nckDongle
Posts: 1,965
Member: 11170
Status: Offline
Sonork: 1603694
Thanks: 230
Thanked 1,598 Times in 593 Posts
Simple exe for detect device by guid and know his path

Hi.
Here is exe to detect device by guid and show full device path if device is connected.
Also can monitor device conect/disconect by guid.

It's usefull when need to know path for specific device and we know device guid.


Hope will be usefull
Attached Files
File Type: rar Detect device.rar (172.8 KB, 609 views)
  Reply With Quote
The Following 8 Users Say Thank You to orbita For This Useful Post:
Old 02-24-2012, 17:50   #2 (permalink)
Freak Poster
 
Join Date: Feb 2008
Location: YEMEN
Posts: 190
Member: 712521
Status: Offline
Thanks: 41
Thanked 25 Times in 15 Posts
it`s very usful but could put code for it it well help me alot
  Reply With Quote
Old 02-24-2012, 19:02   #3 (permalink)
Product Supporter
 
orbita's Avatar
 
Join Date: Apr 2002
Location: nckDongle
Posts: 1,965
Member: 11170
Status: Offline
Sonork: 1603694
Thanks: 230
Thanked 1,598 Times in 593 Posts
Quote:
Originally Posted by mobayz View Post
it`s very usful but could put code for it it well help me alot
Yes , no problem man.
Attached Files
File Type: zip myusb_test.zip (36.5 KB, 348 views)
  Reply With Quote
The Following 2 Users Say Thank You to orbita For This Useful Post:
Old 02-24-2012, 19:11   #4 (permalink)
Freak Poster
 
Join Date: Feb 2008
Location: YEMEN
Posts: 190
Member: 712521
Status: Offline
Thanks: 41
Thanked 25 Times in 15 Posts
that`s very kind of you

asimple qustion code post asmall code that open and send and recive from usb port that
would be greet becouse i `m going to be mad using the unit that posted in fourom it dosn`t work for me
  Reply With Quote
Old 02-24-2012, 19:31   #5 (permalink)
Product Supporter
 
orbita's Avatar
 
Join Date: Apr 2002
Location: nckDongle
Posts: 1,965
Member: 11170
Status: Offline
Sonork: 1603694
Thanks: 230
Thanked 1,598 Times in 593 Posts
Quote:
Originally Posted by mobayz View Post
that`s very kind of you

asimple qustion code post asmall code that open and send and recive from usb port that
would be greet becouse i `m going to be mad using the unit that posted in fourom it dosn`t work for me
How to detect device you can see in source posted above.
I'am maked this unit for LG infineon and it work.

use like this
LGread:=TLGComm.Create;
LGread.Timeout:=5000;
LGRead.Connect(Fmyport);
If LGRead.Connected then
SendMessage(Form1.Handle,MY_MESSAGE, 0, Integer(PChar('Phone conected OK'))) //this if you use class from thread.
else
SendMessage(Form1.Handle,MY_MESSAGE, 0, Integer(PChar('Phone not conected OK')));
Lgread.BaudRate:=115200;
If not LGRead.Connected then LGRead.Connect(Fmyport);
LGRead.SendString('AT');
LgRead.GetResponse;



or hex

LGRead.SendHEX('02 00 82 00 04 00 14 FB 12 00 A7 01 03 00');
LgRead.GetResponse;


hope it help
Attached Files
File Type: rar LGConn.rar (6.9 KB, 189 views)
  Reply With Quote
The Following 2 Users Say Thank You to orbita For This Useful Post:
Old 02-24-2012, 20:42   #6 (permalink)
Major Poster
 
Join Date: Jun 2007
Posts: 46
Member: 525755
Status: Offline
Thanks: 486
Thanked 2 Times in 1 Post
is this unit use usb or com port
  Reply With Quote
Old 02-24-2012, 20:52   #7 (permalink)
Product Supporter
 
orbita's Avatar
 
Join Date: Apr 2002
Location: nckDongle
Posts: 1,965
Member: 11170
Status: Offline
Sonork: 1603694
Thanks: 230
Thanked 1,598 Times in 593 Posts
Quote:
Originally Posted by ana_ye View Post
is this unit use usb or com port
Instead of COM need put device path.
and will read/write usb.
  Reply With Quote
Old 02-24-2012, 21:12   #8 (permalink)
Major Poster
 
Join Date: Jun 2007
Posts: 46
Member: 525755
Status: Offline
Thanks: 486
Thanked 2 Times in 1 Post
wow that`s mean i have to put the device path

Create the file}
fSerial := CreateFile(HERE,
GENERIC_READ or GENERIC_WRITE,
0, (* comm devices must be opened w/exclusive-access *)
NIL, (* no security attrs *)
OPEN_EXISTING, (* comm devices must use OPEN_EXISTING *)
0, (* Ansynchronous or Synchronous I/O *)
0 (* hTemplate must be NULL for comm devices *)
);
CheckError(fSerial=INVALID_HANDLE_VALUE);

{init the timeout for serial}
InitCommTimeouts;

{init the comm State for serial}
InitCommState;

except
Disconnect;
Raise;
end;
end;


in it will work with usb
  Reply With Quote
Old 02-24-2012, 21:13   #9 (permalink)
Major Poster
 
Join Date: Jun 2007
Posts: 46
Member: 525755
Status: Offline
Thanks: 486
Thanked 2 Times in 1 Post
Quote:
Originally Posted by orbita View Post
Instead of COM need put device path.
and will read/write usb.
can i use it with any mobile support only usb comuncation
  Reply With Quote
Old 02-25-2012, 00:54   #10 (permalink)
Freak Poster
 
Join Date: Jan 2001
Location: Jakarta,DKI,indonesia
Posts: 476
Member: 3179
Status: Online
Thanks: 88
Thanked 132 Times in 54 Posts
need setup api library


thanks
  Reply With Quote
Old 02-25-2012, 01:39   #11 (permalink)
Product Supporter
 
orbita's Avatar
 
Join Date: Apr 2002
Location: nckDongle
Posts: 1,965
Member: 11170
Status: Offline
Sonork: 1603694
Thanks: 230
Thanked 1,598 Times in 593 Posts
Quote:
Originally Posted by mardi View Post
need setup api library


thanks
Can I ask why you need this library?
  Reply With Quote
Old 02-25-2012, 03:33   #12 (permalink)
Freak Poster
 
Join Date: Jan 2001
Location: Jakarta,DKI,indonesia
Posts: 476
Member: 3179
Status: Online
Thanks: 88
Thanked 132 Times in 54 Posts
Quote:
Originally Posted by orbita View Post
Can I ask why you need this library?
i cant compile this error in uses setupapi

regards
  Reply With Quote
Old 02-25-2012, 20:04   #13 (permalink)
Freak Poster
 
Join Date: Jul 2011
Location: Australia/Melbourne
Posts: 100
Member: 1610809
Status: Offline
Sonork: 100.1616347
Thanks: 90
Thanked 20 Times in 18 Posts



thaks to orbita
  Reply With Quote
The Following User Says Thank You to GTunlocker For This Useful Post:
Old 03-05-2012, 10:18   #14 (permalink)
Junior Member
 
Join Date: Mar 2012
Posts: 1
Member: 1729743
Status: Offline
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by mardi View Post
i cant compile this error in uses setupapi

regards

mardi he has given you instructions, why do you ask for files that have become, in this forum already explained if you can not process the files, so programmers do not, shame, you look so stupid
  Reply With Quote
Old 03-05-2012, 13:16   #15 (permalink)
Junior Member
 
Join Date: Dec 2011
Posts: 29
Member: 1701410
Status: Offline
Thanks: 15
Thanked 3 Times in 3 Posts
Quote:
Originally Posted by ceriwis View Post
mardi he has given you instructions, why do you ask for files that have become, in this forum already explained if you can not process the files, so programmers do not, shame, you look so stupid

wis ceriwis bisa seperti itu saja lo banyak lagu,seperti hidup kamu yamg ngatur,mending pengemis,tapi berani menunjukkan muka,dari pada penjilat2 dunia maya.jangan komen seperti itu kalau sentimen temuin aja orangnya kalau kamu laki2,
Nih buat mardi kukasih library buat setupapi for delphi work dengan dari d7-d2010,extract semua file at directory lib in delphi

Ceriwis
aku itu tau kamu (kamu orang pinter),tapi kamu terlalu berambisi.dan suka disanjung,gak ada gunanya skill kamu,kalau tatakrama seperti itu.itu namanya kamu menghina orang.orang seperti kamu kebanyakan kalau gagal.sukanya ngumpulin orang banyak buat mengeroyok 1 orang>hahahahaha.
Attached Files
File Type: rar SetupApi.rar (239.6 KB, 229 views)

Last edited by semprul 2011; 03-05-2012 at 13:22.
  Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
thread Thread Starter Forum Replies Last Post
Need software upgrade for Nokia 5110 ptkrf Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 26 09-25-2012 02:41
How can I do a Welcome note for my 6110 a dosn't have any one ? Viper Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 7 07-18-2012 07:57
Seeking for flash nokia 5110 old version (3 version) can exchange for new Tomas Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 7 11-17-2011 17:08
IR between 6150 and IBM TP 600 favdijck Nokia Legacy Phones ( DCT-1 , DCT-2 , DCT-3 , DCT-L ) 3 11-15-2011 12:08
needed pinout for carkit(N61xx) mobileinfo Nokia Hardware & Hardware-Repair Area 1 12-27-2006 10:20


All times are GMT +1. The time now is 20:04.



Powered by Searchlight © 2013 Axivo Inc.
- GSM Hosting Ltd. - 1999-2013 -
Page generated in 0.41497 seconds with 12 queries

SEO by vBSEO