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 > GSM & CDMA Phones / Tablets Software & Hardware Area > Various > Siemens-Benq > Siemens-Benq Flash Patching > x4x, x5x Flashpatching


Reply
 
LinkBack Thread Tools Display Modes
Old 02-12-2005, 01:43   #226 (permalink)
No Life Poster
 
lalo.lerry's Avatar
 
Join Date: Jan 2004
Location: Italy
Age: 49
Posts: 1,018
Member: 50673
Status: Offline
Thanks Meter: 2

;*** CLS. Change Log-in and Log-off Sounds ***

;Firmware : S-ME45i v04
;Author : Lalo
;luki's Siemens Modding Forum
;Adapted and modified from a SL45 Trustkill's and Abomin's patches
;Release : 06.09.04 - v1
;Updated: 04.02.05 - v1.1 - new NAMv3 integration
;Updated: 04.02.05 - v1.2 - option added

;This patch changes the startup and/or shutdown sound in any other phone one,
;according to extended info tone flag in profile's menu
;and selectable through my NAMv3, profile 2, item 1.



557357:CD3EDB 8710DA
591173:CD3EDB 8724DA

7DA10: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF D7405B00F2F4602E9AF40200E6FC5100
7DA20: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF FACD3EDBD7405B00F2F4602E9AF40200
7DA30: FFFFFFFFFFFFFFFF E6FC5600FACD3EDB


;CUSTOMIZATION:
;Change log-in sound:
;7DA1E: 51 xx
;Change log-off sound:
;7DA32: 56 xx
;where xx is sound number according to word list sound

;Disable check if info tones are flagged (but remain tone setting check):
;557342: E01C 0D04
;59115E: E01C 0D04

;Selection throught NAMv3 (you must have NAM patch applied):
;defoult = profile 2, item 1 (own sounds)
;7E510: FFFF 5309 ;assign 2.1 item to CLS patch (uncomment)


;Enjoy it, Misko!

;© Lalo 2005 Luki's Siemens Modding Forum

Last edited by lalo.lerry; 02-12-2005 at 02:43.
  Reply With Quote
Old 02-14-2005, 14:43   #227 (permalink)
Junior Member
 
Join Date: Oct 2004
Age: 54
Posts: 27
Member: 89010
Status: Offline
Thanks Meter: 0
TRI1.1 set breakpoints at Input points and trace them

This is a patch for programmers: allows to set breakpoints and trace them.
Only source code is provided, and it is powerful, although difficult to set up.
I am releasing it because I find it useful and though that other patchers might benefit from it.
Attached Files
File Type: rar TRI11.rar (15.2 KB, 72 views)
  Reply With Quote
Old 02-15-2005, 16:43   #228 (permalink)
No Life Poster
 
zdob's Avatar
 
Join Date: Dec 2000
Age: 44
Posts: 1,541
Member: 2911
Status: Offline
Thanks Meter: 3
[GLOW=red]This is topic for patch only. Other reply 'll be deleted. Use other topics for discussing.. [/GLOW]



Thread for discussing:
  Reply With Quote
Old 02-28-2005, 16:58   #229 (permalink)
Junior Member
 
Join Date: Aug 2004
Age: 51
Posts: 12
Member: 76708
Status: Offline
Thanks Meter: 0
New patch by fcotrina for S/ME45iv4 (I only publish it here).
Attention! Alpha version!

; XAT 0.2 - eXecute AT commands
; Model: S45i_v04
; Author: [email protected]
; Date: 2005.02.24
;
; This patch is in alpha state. It has been released so
; that other patchers can start thinking about it.
; Basically, it allows to execute AT commands.
; Those commands are usually executed from a PC with
; a terminal program.
; Some examples are provided at the end of the listing.
;
; Limitations and peculiarities:
; -After switching-on the phone, connect to a computer
; using the serial cable.
; No need to start any application; just connect it. This
; will trigger some initialization routines.
; I am working on a permanent solution. Be patient
; -It is not possible to read the output ... yet.
; -If you have the phone connected to a computer, you
; can still see the output OK/ERROR. This is good.
; -Before making a patch that executes a command, make sure
; that the command works !
; -It is possible to run several commands in the same
; string, separated by ';' . But see previous note.
; For example, ^SPST=0,1;+ckpd=e9876543 works,
; but +ckpd=e9876543;^SPST=0,1 doesn't.
; -Some commands only work 1 out of 2 times when the
; phone is connected to a computer. No idea why.
;

;base 0100000h ; for my test purposes
base 0A00000h
#include C166.inc
#define S45i_strcpy 0FF40A0h
#define processATcommand 0E0B07Ah

; this will stop "cleanFlagsWhenCableIsDisconnected"
org 0E1EE48h
rets ; was 2D02 jmpr cc_Z, loc_E1EE4E


;org 0100530h ; for my test purposes
org 0FEF530h

mov r13, #0055h ; verify with at+cgsn:0055,0000 or look at 154000

; first, needs to set bytes 00 02 at 0055:0000
; this is more or less to write "AT"
mov r1,#0002h
mov r12, #0000h
extp r13, #1h
mov [r12], r1
add r12, #2h

; and then, copy the rest of the AT command
mov r15, #p(command)
mov r14, #q(command)

mov [-r0], r12
mov [-r0], r13
calls S45i_strcpy
mov r13, [r0+]
mov r12, [r0+]

; and now, the funny part
calls processATcommand

end:
rets

command:
db '^SPST=4,1', 00h ; this command will make a short beep

; other command examples
; db '^SPST=4,1', 00h ; this command will make a short beep
; db 'DP123456', 00h ; this command will dial phone 123456
; db 'e0' ; this command deactivates command echo
; db '^CRSL=2' ; set the volume
; db '+ckpd=e9876543', 00h ; emulates keypresses. Only works 1 out of 2 times.



;0x41EE48: 2D02 DB00

;0x5EF530: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF E6FD5500E6F10200E6FC0000DC4DB81C
;0x5EF540: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 08C2E6FFFB03E6FE5C3588C088D0DAFF
;0x5EF550: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF A04098D098C0DAE07AB0DB005E535053
;0x5EF560: FFFFFFFFFFFF 543D342C3100
  Reply With Quote
Old 03-26-2005, 06:48   #230 (permalink)
No Life Poster
 
Join Date: Mar 2002
Location: -[r0]-
Age: 53
Posts: 834
Member: 9891
Status: Offline
Thanks Meter: 2
;*** PWS. Phone without SIM Card ***

;Firmware: sme45iv04
;Author: rizapn
;Created: March 26, 2005

;Use a normal menu without needed to put any SIM Card


0x5DD686: F048 E014
0x5933D8: DAF9A411 DAFC5E96

;rizapn
  Reply With Quote
Old 03-27-2005, 00:43   #231 (permalink)
No Life Poster
 
Join Date: Mar 2002
Location: -[r0]-
Age: 53
Posts: 834
Member: 9891
Status: Offline
Thanks Meter: 2
;*** DTD. Disable Tone Dialog (when long-pressing * button) ***

;Firmware: sme45iv04
;Author: rizapn
;Published: March 27, 2005


0x55D888: DAF9 0D01
0x55D89E: DAF9 0D01

;rizapn
  Reply With Quote
Old 03-29-2005, 13:49   #232 (permalink)
No Life Poster
 
Join Date: Mar 2002
Location: -[r0]-
Age: 53
Posts: 834
Member: 9891
Status: Offline
Thanks Meter: 2
;*** RSB. (yet another) Rounded Softkey Button ***

;Firmware: sme45iv04
;Author: rizapn
;Created: July 9, 2004 (sl45v56)
;Ported: March 29, 2005 (sme45iv04)

;Modify softkey button "box" (in all screen) to become as fungky as you can.
;Rounded is only one effect ...


0x27F816: 98609870 DAB300A0

0x13A000: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF E6F42820D740CE02982446F2FFFF2D09
0x13A010: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF C04CC05DE01EE01F8840DAF22EE99840
0x13A020: FFFFFFFFFFFFFFFF 0DF198609870DB00

;Below are the X and Y coordinate(s) where white pixel will be drawn,
;must be ended with FFFF. Modify (and add) them as you like.

0x13A028: FFFFFFFFFFFFFFFF 00432E43004F2E4F
0x13A030: FFFFFFFFFFFFFFFFFFFF 36436443364F644FFFFF

;rizapn
Attached Images
File Type: bmp me45rsb_preview.bmp (1.3 KB, 174 views)
  Reply With Quote
Old 03-30-2005, 01:00   #233 (permalink)
No Life Poster
 
Join Date: Mar 2002
Location: -[r0]-
Age: 53
Posts: 834
Member: 9891
Status: Offline
Thanks Meter: 2
;*** FSA. Full screen SMS send Animation ***

;Firmware: sme45iv04
;Author: RizaPN
;Release: June 24, 2004 (sl45v56)
;Ported: March 30, 2005

;Modify the picture animation while sending SMS to become a "full-screen"
;(it is not really a full-screen, but 101x67 images size).


0x04C07A: 61004A006100 800000007E00
0x04C080: 1B14 0000
0x04C084: 2105 0000
0x04C088: 2901 0000
0x04C08C: 3604 0000
0x04C090: 3E14 0000

;--- picture_table_modification ---
0x0DE318: 0C10010047393302 6543010064083802
0x0DE320: 1015010067393302 65430100CC0B3802
0x0DE328: 140D010091393302 65430100340F3802
0x0DE330: 10150100B8393302 654301009C123802
0x0DE338: 0C110100E2393302 6543010004163802

;To get the correct image size, we need to apply at least
;picture_table_modification part into the FUBU. After FUBU modification,
;we can insert any 6 images (101x67) sequence into the SMS picture area
;(id in hex are 007D - 0081)

;~~~~~~~~~~~~~~~~~~~~~~~~~

;rizapn
  Reply With Quote
Old 03-31-2005, 14:53   #234 (permalink)
No Life Poster
 
Join Date: Mar 2002
Location: -[r0]-
Age: 53
Posts: 834
Member: 9891
Status: Offline
Thanks Meter: 2
;*** RBD. RED Button in Dictaphone ***

;Firmware: sme45iv04
;Author: rizapn
;Original: July 17, 2004 (sl45v56)
;Ported: March 31, 2005

;Add a confirmation dialog for RED button in a Dictating Machine


0x50AC44: DC59D4C89A00D4D89C00E00E DAF04CACEA0030ADE01CE6FD
0x50AC50: DAF0B4E7DACE6C00E016DC49C4688800 8C03E6FE5EACE6FFF000FAFA184E48C0
0x50AC60: F0C8F0D906FC9600 2D02FACEEC00DB00
0x50AF96: F068F07906F69600 DAF04CACEA00B2B0
0x50B8F4: F068F07906F68000 DAF04CACEA0028BA
0x50BDA8: F068F07906F69600 DAF04CACEA0028BA

;rizapn
  Reply With Quote
Old 04-01-2005, 10:38   #235 (permalink)
No Life Poster
 
Join Date: Mar 2002
Location: -[r0]-
Age: 53
Posts: 834
Member: 9891
Status: Offline
Thanks Meter: 2
;*** MBT. Menu Button Text ***

;Firmware: sme45iv04
;Author: rizapn
;Modified: April 1, 2005 (sme45)

;Display hh:mm instead of "Menu".
;Use it in any Soft button (string_ID = 142)


0x27F97C: DAF9288D DAB360A0

0x13A060: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 46FC42012D02FAF9288D88E088D0E6FC
0x13A070: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 0038E6FD3700DAC63A2CE00C88C0E6FC
0x13A080: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 180088C0E6FC0038E6FD3700E6FE0538
0x13A090: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF F0FDDAC6743A0804E6F4950098C098D0
0x13A0A0: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF E6FE0438E6FF3700DC4FB98EFAF9D296

;rizapn
  Reply With Quote
Old 04-04-2005, 01:49   #236 (permalink)
No Life Poster
 
Join Date: Mar 2002
Location: -[r0]-
Age: 53
Posts: 834
Member: 9891
Status: Offline
Thanks Meter: 2
;*** RBF. RED Button when Flash SMS exists ***

;Firmware: sme45iv04
;Author: rizapn
;Modified: April 4, 2005

;Pressing RED Button (in the IDLE mode) when FlashSMS exists will not
;delete the message, but read it first. After that, SMS will be deleted.


0x5607C0: DAFCA2BFDAF66E28 E6FC0100DAF5E4D4

;If you don't want to delete the SMS after read it, unmark this:
;0x5607C2: 01 00
  Reply With Quote
Old 04-26-2005, 03:29   #237 (permalink)
Junior Member
 
Join Date: Apr 2005
Age: 44
Posts: 15
Member: 140865
Status: Offline
Thanks Meter: 0
Red face How come???

Quote:
Originally Posted by rizapn
;*** FSA. Full screen SMS send Animation ***

;Firmware: sme45iv04
;Author: RizaPN
;Release: June 24, 2004 (sl45v56)
;Ported: March 30, 2005

;Modify the picture animation while sending SMS to become a "full-screen"
;(it is not really a full-screen, but 101x67 images size).


0x04C07A: 61004A006100 800000007E00
0x04C080: 1B14 0000
0x04C084: 2105 0000
0x04C088: 2901 0000
0x04C08C: 3604 0000
0x04C090: 3E14 0000

;--- picture_table_modification ---
0x0DE318: 0C10010047393302 6543010064083802
0x0DE320: 1015010067393302 65430100CC0B3802
0x0DE328: 140D010091393302 65430100340F3802
0x0DE330: 10150100B8393302 654301009C123802
0x0DE338: 0C110100E2393302 6543010004163802

;To get the correct image size, we need to apply at least
;picture_table_modification part into the FUBU. After FUBU modification,
;we can insert any 6 images (101x67) sequence into the SMS picture area
;(id in hex are 007D - 0081)

;~~~~~~~~~~~~~~~~~~~~~~~~~

;rizapn

I've tried to change the pictures, but how come they influence my GFX Menu??? Any result???
  Reply With Quote
Old 05-11-2005, 14:48   #238 (permalink)
No Life Poster
 
lalo.lerry's Avatar
 
Join Date: Jan 2004
Location: Italy
Age: 49
Posts: 1,018
Member: 50673
Status: Offline
Thanks Meter: 2
;*** VWCH. Vibra When Charging ***

;Firmware : S-ME45i v04
;Author : Lalo
;luki's Siemens Modding Forum
;Adapted from SL45 Abomin's patch
;Release : 11.05.05 - v1

;As you problably noticed, phone doesn't vibra (even if vibra is on) when charging.
;This patch enables vibra (if vibra is setted on in profile menu) also when phone is in charge.



2DC146: 8A88 0D01


;Enjoy it!

Thanks for this patch, Abomin!
I've always hated this fw feature (no way to hear calls if phone is charging and tones are off), always dreamed to disable it!

Last edited by lalo.lerry; 05-11-2005 at 15:01.
  Reply With Quote
Old 05-14-2005, 23:38   #239 (permalink)
Junior Member
 
Join Date: Apr 2004
Age: 41
Posts: 7
Member: 60869
Status: Offline
Thanks Meter: 0
Arrow Thats right!

;Little customization for MBT patch:
13A062: 4201 090A ; remove clock from Menu key on main screen
;(& thx Ramil)
0587D2: 3502 090A ; show clock instead of "Menu" on call screen
;Apply after MBT patch!

Last edited by AlterGrey; 05-15-2005 at 11:56. Reason: some error corrected
  Reply With Quote
Old 05-14-2005, 23:48   #240 (permalink)
Junior Member
 
Join Date: Apr 2004
Age: 41
Posts: 7
Member: 60869
Status: Offline
Thanks Meter: 0
;*** RBT.Remind Beep Time ***
;Firmware : S-ME45i v04
;Author : Ramil
Siemens-Club forum

;time of "beep"
552DBC: 1626 C832 ;OFF mode
57569A: 1626 C832 ;ON mode
;in firmware 9750(HEX - 2616)/216,6=45 s
;now 13000(HEX - 32C8)/216,6=60 s
;--------------------------------------------------
;"beep" again in...
;when press Pause
570D44: 2C01 3C00 ;time in sec
;in firmware 300 s (HEX - 12C) - now 60 s (HEX - 3C)
  Reply With Quote
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
S/ME45i-v04: Flash Patching ... rizapn x4x, x5x Flashpatching 1282 07-05-2015 12:16
821sc flash patch cid3 dead after flash cetech Z3X-Team Products 26 07-17-2009 12:12
L760 flashing patched flash problem Steph NSPRO 4 12-05-2008 11:04
M55 Flash Patch -Anyone´s got full modded flashes ready for flash--?? Uvedovle x4x, x5x Flashpatching 0 04-27-2004 10:32
Need flash patched with Spanish lang for Neptune ! Kilowat Mitsubishi 4 05-21-2002 07:24

 



All times are GMT +1. The time now is 19:55.



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.26569 seconds with 10 queries

SEO by vBSEO