GSM Shop GSM Shop
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.
Only registered members may post questions, contact other members or search our database of over 8 million posts.

Registration is fast, simple and absolutely free so please - Click to REGISTER!

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 04-05-2008, 14:45   #1 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 47
Posts: 416
Member: 100920
Status: Offline
Thanks Meter: 21
my Xmas gift: qualcomm crc/flash/efs/nv + ufs


bugged bugged source
not for public
but good for development

-crc qualcomm
-flash qualcomm amss
-nv qualcomm r/w
-efs qualcomm r/w
-ufs interface boot+support r/w

in delphi
http://www.vodafogne.it/download/Public/QualcomZer0.rar

bR
---
ps. psw = ack*** (look my nick name)
& merry Xmas

Last edited by ackxxx; 04-05-2008 at 14:51.
  Reply With Quote
The Following 2 Users Say Thank You to ackxxx For This Useful Post:
Old 04-05-2008, 14:52   #2 (permalink)
Junior Member
 
Join Date: Apr 2008
Posts: 1
Member: 742667
Status: Offline
Sonork: 1234
Thanks Meter: 0
HI can u help me, i want a flasher for my V220
  Reply With Quote
Old 04-05-2008, 14:54   #3 (permalink)
Freak Poster
 
jr90's Avatar
 
Join Date: Jun 2006
Location: .::THE MATRIX::.
Posts: 423
Member: 287370
Status: Offline
Thanks Meter: 49
Hi ! how are u man !

Finaly u do it ! THX ! Waw it's support UFS now bye bye Qualcomm bazed phones !

best regards !

PS: THE PASS is like his Nickname : ack*** just remplace *** by 3 X's
  Reply With Quote
Old 04-05-2008, 15:19   #4 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 47
Posts: 416
Member: 100920
Status: Offline
Thanks Meter: 21
@end_user: remember many many many bug like phone_killer
  Reply With Quote
Old 04-05-2008, 19:59   #5 (permalink)
Product Supporter
 
NoName®'s Avatar
 
Join Date: Mar 2005
Location: China
Posts: 3,338
Member: 129885
Status: Offline
Sonork: 100:1603514
Thanks Meter: 6,202
Quote:
Originally Posted by jr90 View Post
Hi ! how are u man !

Finaly u do it ! THX ! Waw it's support UFS now bye bye Qualcomm bazed phones !

best regards !

PS: THE PASS is like his Nickname : ack*** just remplace *** by 3 X's

Hehe , buggy sources of oudated informations )))
  Reply With Quote
Old 04-05-2008, 20:06   #6 (permalink)
Freak Poster
 
jr90's Avatar
 
Join Date: Jun 2006
Location: .::THE MATRIX::.
Posts: 423
Member: 287370
Status: Offline
Thanks Meter: 49
bugged bugged source
It's OK THANKS!
  Reply With Quote
Old 04-05-2008, 20:46   #7 (permalink)
Product Supporter
 
andrew_tm's Avatar
 
Join Date: Feb 2007
Location: Europe
Posts: 8,010
Member: 445973
Status: Offline
Thanks Meter: 3,489
fu####cking string ))))
  Reply With Quote
Old 04-05-2008, 23:06   #8 (permalink)
Moderator
 
Join Date: May 1999
Location: Blagoevgrad, Bulgaria
Age: 52
Posts: 1,056
Member: 73
Status: Offline
Thanks Meter: 537
Donate money to this user
Ha ha ha ha ... COMPORT stealed from papuas. FTDI stealed from original ftdi examples...


@ack***

Next time steal smart please ....

And where are gift... ?!?!?!?!?!

WOOOOOOOWWWWWWWWW Return my monney from show .....
  Reply With Quote
Old 04-05-2008, 23:15   #9 (permalink)
Moderator
 
Join Date: May 1999
Location: Blagoevgrad, Bulgaria
Age: 52
Posts: 1,056
Member: 73
Status: Offline
Thanks Meter: 537
Donate money to this user
function My_MadQueue(dev_handle: cardinal; ile: cardinal): integer;
var cb_in: DWORD ;
i: integeR;
begin
for i:=0 to 1000 do
begin
result := FT_GetQueueStatus(dev_handle, @cb_in);
if (result <> FT_OK)
then
begin
Z_Error_Report('FT_GetQueueStatus',result);
exit;
end
else if (cb_in <> ile)
then
begin
Z_Error_Report('FT_GetQueueStatus',result);
exit;
end;
Sleep(10);
end;
end;

and here 1000 ways will be executed one function ...
  Reply With Quote
Old 04-05-2008, 23:22   #10 (permalink)
Moderator
 
Join Date: May 1999
Location: Blagoevgrad, Bulgaria
Age: 52
Posts: 1,056
Member: 73
Status: Offline
Thanks Meter: 537
Donate money to this user
function My_MadQueue(dev_handle: cardinal; ile: cardinal): integer;
var cb_in: DWORD ;
i: integeR;
begin
for i:=0 to 1000 do
begin
result := FT_GetQueueStatus(dev_handle, @cb_in);
if (result <> FT_OK)
then
begin
Z_Error_Report('FT_GetQueueStatus',result); <<<<<<<<<-------- HERE FT_GETQUEUESTATUS

exit;
end
else if (cb_in <> ile)
then
begin
Z_Error_Report('FT_GetQueueStatus',result);
exit;
end;
Sleep(10);
end;
end;

function UFS0_Read(dev_handle: cardinal; var buf: T_IntVect ; var REPLY_NUM_BYTEz: dword): integer;
var
i, j: integer;
auxbuf : T_IntVect;
begin
repeat
result := FT_GetQueueStatus(dev_handle, @REPLY_NUM_BYTEz);
if (result <> FT_OK)
then
begin
Z_Error_Report('FT_GetQueueStatus',result); <<WHY HERE ALSO....
{
Function name is UFS0_Read ... printing Ft_GetqueueStatus.... strange ... INFACT HOW TO DEBUG THIS .....?!?!?!?!?!?!?!?!?
}
exit;
end;
  Reply With Quote
Old 04-05-2008, 23:48   #11 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 47
Posts: 416
Member: 100920
Status: Offline
Thanks Meter: 21
Quote:
Originally Posted by Victor View Post
WOOOOOOOWWWWWWWWW Return my monney from show .....
ok 100% will be returned. no problem && thx for Ur show Sir.
my best regardz
---
  Reply With Quote
Old 04-05-2008, 23:59   #12 (permalink)
Freak Poster
 
ackxxx's Avatar
 
Join Date: Dec 2004
Location: GSM network (near HLR)
Age: 47
Posts: 416
Member: 100920
Status: Offline
Thanks Meter: 21
Quote:
Originally Posted by NoName® View Post
Hehe , buggy sources of oudated informations )))
yes yes..as it is! easy. only oudated informations.
this is why I think isn't a problem.
---
  Reply With Quote
Old 04-06-2008, 02:09   #13 (permalink)
Freak Poster
 
Join Date: Jul 2005
Age: 46
Posts: 366
Member: 163721
Status: Offline
Thanks Meter: 148
Code:
unit CDMA;

interface

const
dVersionDate : Array [0..3] of Byte = (
 $00, $78, $f0, $7E);
dBootID : Array [0..3] of Byte = (
  $7C, $93, $49, $7E);
dBootID2 : Array [0..4] of Byte = (   //Same like  dbootID
  $7C, $00, $23, $56, $7E);

dSIMSIM0 : Array [0..32] of Byte = (
 $80, $21, $48, $00, $01, $00, $00, $00, $61, $00, $00, $00, $00, $10, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $13, $34,
 $7e);
dSIMSIM1 : Array [0..32] of Byte = (
 $80, $21, $48, $00, $01, $00, $00, $00, $61, $00, $00, $00, $01, $10, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $f4, $cc,
 $7e);
dSIMSIM2 : Array [0..32] of Byte = (
 $80, $21, $48, $00, $01, $00, $00, $00, $61, $00, $00, $00, $02, $10, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $cc, $cd,
 $7e);
dBattery : Array [0..123] of Byte = (
 $7B, $00, $01, $02, $03, $04, $05, $06, $07, $08, $09, $9D, $5F, $7E, $00, $78,
 $F0, $7E, $7B, $00, $01, $02, $03, $04, $05, $06, $07, $08, $09, $9D, $5F, $7E,
 $00, $78, $F0, $7E, $7D, $5D, $04, $25, $00, $25, $00, $00, $00, $FF, $FF, $FF,
 $FF, $4A, $3F, $7E, $7B, $00, $01, $02, $03, $04, $05, $06, $07, $08, $09, $9D,
 $5F, $7E, $00, $78, $F0, $7E, $7B, $00, $01, $02, $03, $04, $05, $06, $07, $08,
 $09, $9D, $5F, $7E, $00, $78, $F0, $7E, $7B, $00, $01, $02, $03, $04, $05, $06,
 $07, $08, $09, $9D, $5F, $7E, $00, $78, $F0, $7E, $7B, $00, $01, $02, $03, $04,
 $05, $06, $07, $08, $09, $9D, $5F, $7E, $00, $78, $F0, $7E);
dScreenCapture : Array [0..32] of Byte = (
 $4B, $10, $01, $00, $00, $00, $00, $00, $00, $FF, $FF, $FF, $FF, $00, $44, $69,
 $73, $70, $43, $61, $70, $74, $75, $72, $65, $2E, $62, $6D, $70, $00, $57, $6C,
 $7E);
 const
ChargerAn : Array [0..12] of Byte = (
 $05, $65, $01, $00, $84, $01, $e2, $00, $00, $00, $88, $8e, $7e); //disable Display
ChargerAus : Array [0..12] of Byte = (
 $05, $65, $01, $00, $84, $01, $e0, $00, $00, $00, $fe, $b7, $7e);  //???
ChargerAus2 : Array [0..12] of Byte = (
 $05, $65, $01, $00, $84, $01, $e1, $00, $00, $00, $45, $ab, $7e); //???
Zeit : Array [0..3] of Byte = (
 $1d, $1c, $3b, $7e);
DataReset : Array [0..3] of Byte = (
 $0b, $ab, $4e, $7E);
DataKey : Array [0..29] of Array [0..5] of Byte = (
   ($20, $00, $30, $74, $f4, $7E),   //0              //id :48
   ($20, $00, $31, $fd, $e5, $7E),   //1              //id :49
   ($20, $00, $32, $66, $d7, $7E),   //2              //id :50
   ($20, $00, $33, $ef, $c6, $7E),   //3              //id :51
   ($20, $00, $34, $50, $b2, $7E),   //4              //id :52
   ($20, $00, $35, $d9, $a3, $7E),   //5              //id :53
   ($20, $00, $36, $42, $91, $7E),   //6              //id :54
   ($20, $00, $37, $cb, $80, $7E),   //7              //id :55
   ($20, $00, $38, $3c, $78, $7E),   //8              //id :56
   ($20, $00, $39, $b5, $69, $7E),   //9              //id :57
   ($20, $00, $2a, $af, $4b, $7E),  //Stern           //id :42
   ($20, $00, $23, $6e, $d6, $7E),  //Raute           //id :35
   ($20, $00, $52, $60, $b4, $7E),  //C               //id :82
   ($20, $00, $a2, $ef, $43, $7E),   //Kamera         //id :143
   ($20, $00, $50, $72, $97, $7E),   //Grüner BTN     //id :80
   ($20, $00, $51, $fb, $86, $7E),   //Roter BTN      //id :81
   ($20, $00, $9e, $00, $b8, $7E),   //LSK            //id :158
   ($20, $00, $9f, $89, $a9, $7E),   //RSK            //id :159
   ($20, $00, $a0, $fd, $60, $7E),   //Tasks          //id :160
   ($20, $00, $a1, $74, $71, $7E),   // Video Call    //id :161
   ($20, $00, $70, $70, $b6, $7E),  //Mitte           //id :112
   ($20, $00, $09, $36, $58, $7E),  //Links           //id :9
   ($20, $00, $54, $56, $d1, $7E),  //Hoch            //id :84
   ($20, $00, $0a, $ad, $6a, $7E),  //Rechts          //id :10
   ($20, $00, $55, $df, $c0, $7E),  //Runter          //id :85
   ($20, $00, $87, $40, $35, $7E),  //Unbekannt       //id :
   ($20, $00, $5f, $85, $6f, $7E), //Unbekannt      //id :
   ($20, $00, $8f, $08, $b9, $7E),   //Vol Up         //id :
   ($20, $00, $a5, $50, $37, $7E));   //Internet       //id :
DataKey2 : Array [0..6] of Byte =
   ($20, $00, $90, $7d, $5e, $51, $7E); //Vol Down    //id :
KeyCap : Array [0..15] of Byte = (
 $7D, $5D, $04, $72, $17, $72, $17, $00, $00, $08, $00, $00, $00, $F7, $A8, $7E); //aus
KeyCap2 : Array [0..15] of Byte = (
 $7D, $5D, $04, $72, $17, $72, $17, $01, $00, $08, $00, $00, $00, $dc, $Ac, $7E); //an
DispCap : Array [0..15] of Byte = (
$7D, $5D, $04, $72, $17, $72, $17, $00, $00, $08, $00, $00, $00, $F7, $A8, $7E);
//7D 5D 04 72 17 72 17 01 00 08 00 00 00 DC AC 7E
EFTM1 : Array [0..133] of Byte = (
 $27, $C5, $01, $01, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $31, $15, $7E);
EFTM2 : Array [0..5] of Byte = (
 $29, $01, $00, $31, $40, $7E);
EFTM3 : Array [0..5] of Byte = (
 $29, $02, $00, $59, $6a, $7E);
LFTM1 : Array [0..133] of Byte = (
 $27, $C5, $01, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $F8, $A3, $7E);
LFTM2 : Array [0..5] of Byte = (
 $29, $00, $00, $e9, $59, $7e);
LFTM3 : Array [0..5] of Byte = (
 $29, $02, $00, $59, $6a, $7e);
OfflineA : Array [0..5] of Byte = (
 $29, $00, $00, $e9, $59, $7E);
OfflineD : Array [0..5] of Byte = (
 $29, $01, $00, $31, $40, $7E);
Reset : Array [0..5] of Byte = (
 $29, $02, $00, $59, $6A, $7E);
FTM : Array [0..5] of Byte = (
 $29, $03, $00, $81, $73, $7E);
Online : Array [0..5] of Byte = (
 $29, $04, $00, $89, $3e, $7E);
camid2 : Array [0..12] of Byte = (
 $4b, $0b, $01, $80, $3a, $05, $0a, $00, $23, $00, $53, $9c, $7e);
Selcam1 : Array [0..15] of Byte = (
 $4b, $0b, $00, $80, $0e, $00, $03, $00, $0c, $00, $01, $00, $01, $0f, $ef, $7e);
Selcam2 : Array [0..15] of Byte = (
 $4b, $0b, $00, $80, $0e, $00, $03, $00, $0c, $00, $01, $00, $00, $86, $fe, $7e);
Rootkey : Array [0..4] of Byte = (
 $21, $00, $00, $3E, $00);
Sim_Secure : Array [0..4] of Byte = (
 $21, $00, $2C, $00, $00);
Sim_Secure2 : Array [0..4] of Byte = (
 $21, $00, $2C, $02, $00);
FlashData : Array [0..6] of Byte = (
 $4b, $13, $15, $00, $a4, $ab, $7e );
SecurityData : Array [0..4] of Byte = (
 $17, $01, $57, $C6, $7E);
dDMSS : Array [0..3] of Byte =(
 $0C, $14, $3A, $7E);
dDMSSsnap : Array [0..3] of Byte =(
 $63, $e5, $a1, $7E);
dGetFeatures : Array [0..3] of Byte =(
 $51, $74, $b3, $7E);
dGetMode : Array [0..3] of Byte =(
 $3f, $0c, $39, $7E);
dReadRootKey : Array [0..7] of Byte = (
 $21, $00, $00, $3E, $00, $10, $88, $7E);
dReadsimsecure : Array [0..36]of Byte =(
 $80, $21, $48, $00, $01, $00, $00, $00, $57, $00, $00, $00, $00, $10, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $03, $02,
 $00, $00, $8f, $06, $7e);
dDownloadmode : Array[0..3] of Byte = (
 $3a, $a1, $6e, $7e);
dBattInfo : Array[0..12] of Byte = (
 $4b, $0b, $01, $80, $3e, $05, $0a, $00, $0d, $00, $dc, $35, $7e);
dGetDispInfo : Array[0..7] of Byte = (
 $4b, $10, $00, $00, $00, $18, $8a, $7e);
dCamInfo : Array[0..12] of Byte = (
 $4b, $0b, $01, $80, $3a, $05, $0a, $00, $23, $00, $53, $9C, $7e);
DReadESN : Array[0..135] of Byte = (
 $26, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $AD, $D2, $7E);
dWriteESN : Array[0..135] of Byte = (   //12345678
 $27, $00, $00, $78, $56, $34, $12, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $61, $33, $7E);
Unbekannt2 : Array[0..135] of Byte = (
 $26, $52, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $71, $F6, $7E);
dNAM : Array[0..135] of Byte = (
 $26, $B1, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $1B, $C7, $7E);
Unbekannt3 : Array[0..135] of Byte = (
 $26, $19, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $49, $37, $7E);
Unbekannt4 : Array[0..135] of Byte = (
 $26, $1B, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $1A, $03, $7E);
Unbekannt5 : Array[0..135] of Byte = (
 $26, $1D, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $EF, $5F, $7E);
dReadSPC : Array[0..135] of Byte = (
 $26, $55, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00,
 $00, $00, $00, $00, $00, $A5, $34, $7E);



GetIMEI : Array [0..5] of Byte = (     
  $26, $26, $02, $DF, $47, $7E);

GetBT : Array [0..5] of Byte = (   
  $26, $BF, $01, $01, $BB, $7E);
var
DataSPC : Array [0..9] of Byte = (
 $41, $30, $30, $30, $30, $30, $30, $df, $8a, $7e);   //41 01 70 41 7E 


implementation

end.

Last edited by Gehstock; 04-06-2008 at 02:16.
  Reply With Quote
Old 04-06-2008, 02:11   #14 (permalink)
No Life Poster
 
..::My3gtech::..'s Avatar
 
Join Date: Jul 2005
Location: Mobile solution at Pak_Lahore
Age: 46
Posts: 979
Member: 158032
Status: Offline
Thanks Meter: 331
Exclamation Here is some proble

Quote:
Originally Posted by ack*** View Post
bugged bugged source
not for public
but good for development

-crc qualcomm
-flash qualcomm amss
-nv qualcomm r/w
-efs qualcomm r/w
-ufs interface boot+support r/w

in delphi
http://www.vodafogne.it/download/Public/QualcomZer0.rar

bR
---
ps. psw = ack*** (look my nick name)
& merry Xmas
Hi bro here is some problem with soft need ftd2xx.dll please upload it on the forum so we will check and post our coments with thanks...

BR
Omairbutt786
  Reply With Quote
Old 04-06-2008, 05:42   #15 (permalink)
Freak Poster
 
Join Date: Oct 2006
Location: Sweden
Age: 46
Posts: 146
Member: 374297
Status: Offline
Thanks Meter: 51
From new driver CDM 2.04.06 WHQL Certified

DriverVer=03/13/2008, 2.04.06

http://www.ftdichip.com/Drivers/D2XX.htm
Attached Files
File Type: rar FTD2XX_3.1.15.rar (85.9 KB, 228 views)
  Reply With Quote
The Following User Says Thank You to Simri For This Useful Post:
Reply

Bookmarks


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
02 May 2009: "QCModule2" v1.03: .rebuild EFS/NV function added PASSIONATE_BOYS Infinity-Box 13 03-24-2010 11:35
my tornado is brand new but cant boot ufs?help this problem... RCB Telecom UFS2 + UFS3-Tornadoflasher 1 12-03-2009 15:05
02 May 2009: "QCModule2" v1.03:- rebuild EFS/NV function added PASSIONATE_BOYS Various CDMA/TDMA Cell Phones 3 05-02-2009 14:53
my xmas present to all involved in bbking fiasco ringtons BB5KING for (BB5BOX) 0 12-11-2008 14:45
Xmas gift: russian firm with cam hacked for gx15 INI-IK-IR Sharp 4 12-27-2005 23:20

 



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



Powered by Searchlight © 2024 Axivo Inc.
vBulletin Optimisation provided by vB Optimise (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
- GSM Hosting Ltd. - 1999-2023 -
Page generated in 0.26839 seconds with 11 queries

SEO by vBSEO