[Q] SL4A crash when accessing scanBarcode - Desire HD Q&A, Help & Troubleshooting

Hi.
Playing around with Python via the Android Scripting Environment.
But for some reason, the SL4A crashes when accessing android.scanBarcode().
Code:
import android
import httplib
import urllib
while(True):
droid = android.Android()
code = droid.scanBarcode()
isbn = code['result']['SCAN_RESULT']
sleep(5)
if not isbn: # Scan failed for some reason, bail.
print "\r\n SCAN FAILED \r\n"
sleep(3000)
break
conn = httplib.HTTPConnection("YOUR_SERVER_NAME_HERE")
conn.request("GET", "add_isbn.php?" + urllib.urlencode({'isbn': isbn }))
resp = conn.getresponse()
print resp.read() + "\r\n"
conn.close()
droid.exit()
Any idea why? is this related to the Desire HD?
Phone info:
ROM: Using the original ROM that comes with the phone and no modifications except that i rooted it.
Version: 2.2
Kernel: 2.6.32.21

Related

bad_pool_header crash with WM5 upgrade

I upgraded my XDA Exec with the new ROM 1.30.162 WWE and Activesync 4.1 but each time I sync, I get a "bad_pool_header" error on a blue background which crashes my machine.
I installed Activesync 4.1 on another laptop to check if this problem was due to drivers etc on my main laptop, and discovered that the device syncs with no problems. There is, therefore, a conflict between the new Activesync 4.1 or the new ROM, and something on my main laptop.
Has anyone come across this problem?
Thanks
The problem is definitely on your PC. Reinstall motherboard drivers, reflash bios, remove antivirus, reinstall windows, etc.
Thanks - pretty drastic...!
Is there a short cut? ie reinstalling drivers one by one? If so, which are likely to be the main culprits? Motherboard? Broadband modem? etc
The error code after reboot of the laptop is:
BC code 19 BCP1:00000020 BCP2: 89A76000 BCP3: 89A766C0 BCP4: 0AD8000
OS Ver 5_1_2600 SP: 2_0 Product 256_1
\WER22c7.dir00\Mini052506-06.dmp
\WER22c7.dir00\sysdata.xml
Does this reveal anything that could explain which driver?
Thanks
10860 said:
Does this reveal anything that could explain which driver?
Click to expand...
Click to collapse
no.
You should create a complete crash dump, and use microsoft debugging tools to find faulting driver. Or better reinstall windows.
I looked at the minidump file and used MS debugger, the readout is below. I am not sure if I did the debugging ok, or how to interpret it. Anything useful in the readout?
Thanks
Loading Dump File [C:\Mini052406-01.dmp]
Mini Kernel Dump File: Only registers and stack trace are available
Symbol search path is: C:\WINDOWS\Symbols
Executable search path is:
Unable to load image ntoskrnl.exe, Win32 error 2
*** WARNING: Unable to verify timestamp for ntoskrnl.exe
Windows XP Kernel Version 2600 (Service Pack 2) UP Free x86 compatible
Product: WinNt, suite: TerminalServer SingleUserTS
Kernel base = 0x804d7000 PsLoadedModuleList = 0x8055a420
Debug session time: Wed May 24 20:25:34.038 2006 (GMT+1)
System Uptime: 0 days 0:52:32.633
Unable to load image ntoskrnl.exe, Win32 error 2
*** WARNING: Unable to verify timestamp for ntoskrnl.exe
Loading Kernel Symbols
.......................................................................................................................................................................................................
Loading User Symbols
Loading unloaded module list
.................................
*******************************************************************************
* *
* Bugcheck Analysis *
* *
*******************************************************************************
Use !analyze -v to get detailed debugging information.
BugCheck 19, {20, 88187000, 881876c0, ad80000}
Probably caused by : Unknown_Image ( nt!KeBugCheck2+4d4 )
Followup: MachineOwner
---------
kd> !analyze -v
*******************************************************************************
* *
* Bugcheck Analysis *
* *
*******************************************************************************
BAD_POOL_HEADER (19)
The pool is already corrupt at the time of the current request.
This may or may not be due to the caller.
The internal pool links must be walked to figure out a possible cause of
the problem, and then special pool applied to the suspect tags or the driver
verifier to a suspect driver.
Arguments:
Arg1: 00000020, a pool block header size is corrupt.
Arg2: 88187000, The pool entry we were looking for within the page.
Arg3: 881876c0, The next pool entry.
Arg4: 0ad80000, (reserved)
Debugging Details:
------------------
BUGCHECK_STR: 0x19_20
POOL_ADDRESS: 88187000
CUSTOMER_CRASH_COUNT: 1
DEFAULT_BUCKET_ID: DRIVER_FAULT
LAST_CONTROL_TRANSFER: from 00000000 to 8053331e
STACK_TEXT:
f78cab74 00000000 00000000 00000000 00000000 nt!KeBugCheck2+0x4d4
STACK_COMMAND: kb
FOLLOWUP_IP:
nt!KeBugCheck2+4d4
8053331e ?? ???
FAULTING_SOURCE_CODE:
FOLLOWUP_NAME: MachineOwner
SYMBOL_NAME: nt!KeBugCheck2+4d4
IMAGE_NAME: Unknown_Image
DEBUG_FLR_IMAGE_TIMESTAMP: 0
BUCKET_ID: ZEROED_STACK
MODULE_NAME: Unknown_Module
Followup: MachineOwner
---------
Nothing useful, minidump does not have enough information
It is very difficult to debug pool corruptions.

GPS intermediate driver

Hello everybody,
I tried to get the GPS postion data o from the integrated GPS-Device of a HTC Artemis.
For this purpose, i used the Microsoft GPS intermediate Drivers
But now, i've got a problem. If i tried to get the Data with the following code
Code:
DegreesMinutesSeconds location;
location = GPSGeraet.GetPosition().LatitudeInDegreesMinutesSeconds;
int x = location.Degrees;
int y = location.Minutes;
double z = location.Seconds;
I get a zero in the Degree-variable, in the minutes-variable i get the degree-Value, in the seconds-variable the minutes-value, i can't find the second-Value
However, if i use:
Code:
GpsPosition GPSLoc = new GpsPosition();
GPSLoc = GPSGeraet.GetPosition();
double a = GPSLoc.dblLatitude;
the variable has the correct value. Instead of converting this value, i would like to use the original degree, minutes, seconds-variables.
Does anyone have an idea what is wrong?

SQL CE is driving me crazy !

Hi !
I'm trying to create an application based on location aware concept.
And I'm trying to do a simple query to update some records in my database but it isn't working..
I'm trying to do a simple query like "UPDATE markers set status = 0 WHERE id = 10"
This is giving me an error like this "[1,8,markers]". BUT WHAT THE HELL DOES THIS MEAN ?
If I try to run que query manually it does work ! So what i'm I doing wrong ? How can I activate a (MUCH) more verbose error information ?
This is my function :
Code:
Public Sub turnMarker(ByVal id As String, ByVal status As String)
cOpen()
Dim query As SqlCeCommand = myCon.CreateCommand
query.CommandText = "UPTADE markers set status = " + status + " WHERE id = " + id + ""
Try
'MsgBox(query.CommandText)
query.ExecuteNonQuery()
Catch ex As Exception
MsgBox("Error updating markers !" + query.CommandText + ex.Message)
End Try
cClose()
End Sub
thanks !
EDIT: Nevermind ... found out the problem.
Nevertheless, does anyone know how to make errors more verbose ?
Use SqlCeException as opposed to Exception, and then run through the errors collection....
strX = strX & ex.NativeError
For I = 0 To ex.Errors.Count - 1
strX = strX & "Index #" & I & vbCrLf & "Error:" & ex.Errors(I).ToString() & vbCrLf
Next
do a search for sr.dll. you need to deploy this as part of your app to be able to see exception data when debugging .net ce apps.
or go here -> http://forum.xda-developers.com/showpost.php?p=4862355&postcount=87 .That sample project has got a copy. you'll need to add it as part of whatever project you're making.

HELP! Running external program process minimized using .NET

I'm stumped on how to do this...
I'm trying to call an external program (python CE) in my vb.net program to run a script. I'm using the following code and it works just fine... EXCEPT that it opens python.exe in the foreground, processes my script in an open window and closes it. I want the whole process to be invisible to the user. Python CE does not have a (working) console-less function, so I need to try to do it using .NET.
I can't figure it out!
Code:
Dim scriptfile As String
Dim pyProcess As New Process()
scriptfile = """\default.pyw"" ""1"" ""2"""
pyProcess.StartInfo.FileName = "\Program Files\Python25\python.exe"
pyProcess.StartInfo.Arguments = scriptfile
pyProcess.StartInfo.UseShellExecute = False
pyProcess.Start()
As you can see the UseShellExecute property set to false does nothing. Should I maybe try running this in a separate thread??
Here you have an example of how it should look like
Code:
Public Sub HTCRomTool(ByVal localeID As String)
Dim process As New Process
process.StartInfo.Arguments = (" /buildrom "".\FLASH\ferom.htcrtproj"" "".\FLASH\RUU_Signed_" & localeID & ".nbh""")
process.StartInfo.FileName = (Me.ToolsFolder & "\htcrt.exe")
process.StartInfo.CreateNoWindow = True
process.Start
Do While Not process.HasExited
Thread.Sleep(100)
Loop
process.Close
process.Dispose
End Sub
That you need to add your references and arguments
I appreciate it! and will try it out ASAP
CreateNoWindow does not show up as a member of system.diagnostics.process.StartInfo...
I'm using NET CF 3.5 and VS2008 refuses to accept that line.
The next example, the NET CF 3.5 and VS2008
Code:
Dim p As New Process()
p.UseShellExecute = True
p.StartInfo.FileName = "C:\Windows\Notepad.exe"
p.StartInfo.Verb = "runas"
p.Start()
And See This - Open NetCF
nokser said:
The next example, the NET CF 3.5 and VS2008
Code:
Dim p As New Process()
p.UseShellExecute = True
p.StartInfo.FileName = "C:\Windows\Notepad.exe"
p.StartInfo.Verb = "runas"
p.Start()
Click to expand...
Click to collapse
I appreciate the help, but that doesn't stop pythonCE from launching in its own window. I'm going to reinstall the SDKs just in case I screwed something up a while ago... other than that, I'll have to think on it.
OpenNetCF is interesting but the newest version (2.X) doesn't have the Process namespace anymore. They took it out with the advent of NET CF 2.0. I might try their deprecated version though (1.4)
For anyone else that is interested in this thread, I figured out a solution.
PythonCE does work on WM6.5 and the switch to run without a console/window opening is /nopcceshell.
HOWEVER, this won't work on the emulator that's part of VS2008 when you're debugging your software! If you use your own device on ActiveSync and debug your program on your physical device, it actually works. I'm running WM6.5.4 (I think).
There's no special code needed to run this in VB.NET... just start a process and pass "/nopcceshell" as the first argument. Then you can put your script name (needs full path) and any other arguments afterwards.
Oh man this was killing me.... SOLVED!

MMI codes for the TMO T989

Anyone have a good list of MMI codes for the TMO T989?
Device: Samsung Tmobile S2 [SGH-T989]
ROM: BlackEdition R7 ICS Rom
Radio: Blaze 4g ICS Radio
Tweak Script: Newest Supercharger V6 ICS with modified services.jar, KAK, 3G Turbocharger
Did you try that thing called Google?
xsteven77x said:
Did you try that thing called Google?
Click to expand...
Click to collapse
Google? What's that? Btw yes I have the results are some codes here some codes there. I was looking for a good list of all or atleast many in one area.
Device: Samsung Tmobile S2 [SGH-T989]
ROM: BlackEdition R7 ICS Rom
Radio: Blaze 4G ICS Radio
Tweak Script: Newest Supercharger V6 ICS with modified services.jar, KAK, 3G Turbocharger
Samsung Mobile Codes. - - - Global Codes.
*#1234# = Firmware Version.
*#2222# = H/W Version.
*#8999*8376263# = All Versions Together.
*#8999*8378# = Test Menu.
*#4777*8665# = GPSR Tool.
*#8999*523# = LCD Brightness.
*#8999*377# = Error Menu.
*#8999*327# = EEP Menu.
*#8999*667# = Debug Mode.
*#92782# = PhoneModel. (Wap)
#*5737425# = JAVA Mode.
*#2255# = Call List.
*#232337# = Bluetooth MAC Adress.
*#5282837# = Java Version.
#*4773# = Incremental Redundancy.
#*7752# = 8 PSK uplink capability bit.
#*7785# = Reset wakeup & RTK timer cariables/variables.
#*7200# = Tone Generator Mute.
#*3888# = BLUETOOTH Test mode.
#*7828# = Task screen.
#*#8377466# = S/W Version & H/W Version.
#*2562# = Restarts Phone.
#*2565# = No Blocking? General Defense.
#*3353# = General Defense, Code Erased.
#*3837# = Phone Hangs on White screen.
#*3849# = Restarts Phone.
#*3851# = Restarts Phone.
#*3876# = Restarts Phone.
#*7222# = Operation Typ: (Class C GSM)
#*7224# = !!! ERROR !!!
#*7252# = Operation Typ: (Class B GPRS)
#*7271# = CMD: (Not Available)
#*7274# = CMD: (Not Available)
#*7337# = Restarts Phone. (Resets Wap Settings)
#*2787# = CRTP ON/OFF.
#*2886# = AutoAnswer ON/OFF.
#*3737# = L1 AFC.
#*5133# = L1 HO Data.
#*7288# = GPRS Detached/Attached.
#*7287# = GPRS Attached.
#*7666# = White Screen.
#*7693# = Sleep Deactivate/Activate.
#*7284# = L1 HO Data.
#*2256# = Calibration info? (For CMD set DEBUGAUTONOMY in cihard.opt)
#*2286# = Databattery.
#*2527# = GPRS switching set to (Class 4, 8, 9, 10)
#*2679# = Copycat feature Activa/Deactivate.
#*3940# = External looptest 9600 bps.
#*4263# = Handsfree mode Activate/Deactivate.
#*4700# = Please use function 2637.
#*7352# = BVMC Reg value (LOW_SWTOFF, NOMINAL_SWTOFF)
#*2558# = Time ON.
#*3370# = Same as 4700.
#*3941# = External looptest 115200 bps
#*5176# = L1 Sleep.
#*7462# = SIM Phase.
#*7983# = Voltage/Freq.
#*7986# = Voltage.
#*8466# = Old Time.
#*2255# = Call Failed.
#*5187# = L1C2G trace Activate/Deactivate.
#*5376# = DELETE ALL SMS!!!!.
#*6837# = Official Software Version: (0003000016000702)
#*7524# = KCGPRS: (FF FF FF FF FF FF FF FF 07)
#*7562# = LOCI GPRS: (FF FF FF FF FF FF FF FF FF FF FF FE FF 01)
#*2337# = Permanent Registration Beep.
#*2474# = Charging Duration.
#*2834# = Audio Path. (Handsfree)
#*3270# = DCS Support Activate/Deactivate.
#*3282# = Data Activate/Deactivate.
#*3476# = EGSM Activate/Deactivate.
#*3676# = FORMAT FLASH VOLUME!!!
#*4760# = GSM Activate/Deactivate.
#*4864# = White Screen.
#*5171# = L1P1.
#*5172# = L1P2.
#*5173# = L1P3.
#*7326# = Accessory.
#*7683# = Sleep variable.
#*8465# = Time in L1.
#*2252# = Current CAL.
#*2836# = AVDDSS Management Activate/Deactivate.
#*3877# = Dump of SPY trace.
#*7728# = RSAV.
#*2677# = Same as 4700.
#*3728# = Time 2 Decod.
#*3725# = B4 last off.
#*7372# = Resetting the time to DPB variables.
#*7732# = Packet flow context bit Activate/Deactivate.
#*6833# = New uplink establishment Activate/Deactivate.
#*3273# = EGPRS multislot. (Class 4, 8, 9, 10)
#*7722# = RLC bitmap compression Activate/Deactivate.
#*2351# = Blinks 1347E201 in RED.
#*4472# = Hysteresis of serving cell: 3 dB
#*2775# = Switch to 2 inner speaker.
#*9270# = Force WBS.
#*7878# = FirstStartup. (0=NO, 1=YES)
#*3757# = DSL UART speed set to. (LOW, HIGH)
#*8726# = Switches USBACM to Normal.
#*8724# = Switches USBACM to Generator mode.
#*8727# = Switches USBACM to Slink mode.
#*8725# = Switches USBACM to Loop-back mode.
#*3838# = Blinks 3D030300 in RED.
#*2077# = GPRS Switch.
#*2027# = GPRS Switch.
#*0227# = GPRS Switch.
#*0277# = GPRS Switch.
#*8370# = Tfs4.0 Test 0.
#*8371# = Tfs4.0 Test 1.
#*8372# = Tfs4.0 Test 2.
#*8373# = Tfs4.0 Test 3.
#*8374# = Tfs4.0 Test 4.
#*8375# = Tfs4.0 Test 5.
#*8376# = Tfs4.0 Test 6.
#*8377# = Tfs4.0 Test 7.
#*8378# = Tfs4.0 Test 8.
#*8379# = Tfs4.0 Test 9.
#*7878# = FirstStartup. (0=NO, 1=YES)
#*3838# = Blinks 3D030300 in RED.
#*2077# = GPRS Switch.
#*2027# = GPRS Switch.
#*0227# = GPRS Switch.
#*0277# = GPRS Switch.
#*22671# = AMR REC START.
#*22672# = Stop AMR REC. (File name: /a/multimedia/sounds/voice list/ENGMODE.amr)
#*22673# = Pause REC.
#*22674# = Resume REC.
#*22675# = AMR Playback.
#*22676# = AMR Stop Play.
#*22677# = Pause Play.
#*22678# = Resume Play.
#*77261# = PCM Rec Req.
#*77262# = Stop PCM Rec.
#*77263# = PCM Playback.
#*77264# = PCM Stop Play.
#*22679# = AMR Get Time.
*#8999*364# = Watchdog ON/OFF.
*#8999*427# = WATCHDOG signal route setup.
*2767*226372# = Camera Reset. (deletes photos)
*2767*3855# = E2P Full Reset.
*2767*2878# = E2P Custom Reset.
*2767*927# = E2P Wap Reset.
*2767*226372# = E2P Camera Reset.
*2767*688# = Reset Mobile TV.
#7263867# = RAM Dump. (On or Off)
samsung mobile code. - - - wap / mms code.
*2767*43927# = Austria WAP Settings.
*2767*420927# = Czech WAP Settings.
*2767*33927# = France WAP Settings.
*2767*49927# = Germany WAP Settings.
*2767*30927# = Greece WAP Settings.
*2767*39927# = Italy WAP Settings.
*2767*31927# = Netherlands WAP Settings.
*2767*351927# = Portugal WAP Settings.
*2767*7927# = Russia WAP Settings.
*2767*34927# = Spain WAP Settings.
*2767*46927# = Sweden WAP Settings.
*2767*44927# = UK WAP Settings.
*2767*380927# = Ukraine WAP Settings.
*2767*73738927# = WAP Settings Reset.
*2767*43667# = Austria MMS Settings.
*2767*420667# = Czech MMS Settings.
*2767*33667# = France MMS Settings.
*2767*49667# = Germany MMS Settings.
*2767*30667# = Greece MMS Settings.
*2767*39667# = Italy MMS Settings.
*2767*31667# = Netherlands MMS Settings.
*2767*351667# = Portugal MMS Settings.
*2767*7667# = Russia MMS Settings.
*2767*34667# = Spain MMS Settings.
*2767*46667# = Sweden MMS Settings.
*2767*44667# = UK MMS Settings.
*2767*380667# = Ukraine MMS Settings.
samsung mobile code. - - - email code.
#*36245# Turns Email TestMenu on.
*2767*22236245# Email EPP set (....)!
*2767*837836245# Email Test Account!
*2767*29536245# Email Test2 Account!
*2767*036245# Email EPP reset!
*2767*136245# Email EPP set (1)!
*2767*736245# Email EPP set (7)!
*2767*3036245# Email...
*2767*3136245# Email...
*2767*3336245# Email...
*2767*3436245# Email...
*2767*3936245# Email...
*2767*4136245# Email...
*2767*4336245# Email...
*2767*4436245# Email...
*2767*4536245# Email...
*2767*4636245# Email...
*2767*4936245# Email...
*2767*6036245# Email...
*2767*6136245# Email...
*2767*6236245# Email...
*2767*6336245# Email...
*2767*6536245# Email...
*2767*6636245# Email...
*2767*8636245# Email...
*2767*85236245# Email...
samsung mobile code. - - - lock code.
*#7465625# = Check the locks.
*7465625*638*Code# = Enables Network lock.
#7465625*638*Code# = Disables Network lock.
*7465625*782*Code# = Enables Subset lock.
#7465625*782*Code# = Disables Subset lock.
*7465625*77*Code# = Enables SP lock.
#7465625*77*Code# = Disables SP lock.
*7465625*27*Code# = Enables CP lock.
#7465625*27*Code# = Disables CP lock.
*7465625*746*Code# = Enables SIM lock.
#7465625*746*Code# = Disables SIM lock.
*7465625*228# = Activa lock ON.
#7465625*228# = Activa lock OFF.
*7465625*28638# = Auto Network lock ON.
#7465625*28638# = Auto Network lock OFF.
*7465625*28782# = Auto subset lock ON.
#7465625*28782# = Auto subset lock OFF.
*7465625*2877# = Auto SP lock ON.
#7465625*2877# = Auto SP lock OFF.
*7465625*2827# = Auto CP lock ON.
#7465625*2827# = Auto CP lock OFF.
*7465625*28746# = Auto SIM lock ON.
#7465625*28746# = Auto SIM lock OFF.
samsung mobile code. - - - sound code.
Samsung phones.
Dial *#6984125*#
Test menu dial *#9072641*# (You need this one i think.)
Click 5 Audio - 2 AP volume config
Now you see zie je 4 things:
1 RCV config
2 EAR config
3 SPK config
4 BTH config
Now you see this:
1 MP volume
2 Keytone volume
3 Ringtone volume
4 Rec volume
5 FM radio volume
6 Camera volume
7 Voice call volume
8 Vt call volume
9 Voice memo volume
( SPK = Speaker )( Ear = Headset )
Tune Headset volume:
*#9072641*# - 2 EAR config - 3 Ringtone volume - Stap 6 tune it to 10
Tune movie volume:
*#9072641*# - 3 SPK config - 3 Ringtone volume - Stap 6 tune it to 10
Note it works but don't forget to type somewhere your old settings.
And These:
* # * # 4636 # * # * Details of your battery: - Phone Information - Battery Information - Battery History - Usage Statistics
* # * # 7780 # * # * This code is to do a factory reset .
Delete the following: - The settings of your Google account on the phone - system settings and applications - Applications you download to SD (downloaded, not installed) does not delete: - The software and applications you have installed - Files the SD.
* 2767 * 3855 # Warning: This code will make us a full factory reset (wipe total). Deleting all files in internal memory and reinstall the firmware.
* # * # 34971539 # * # * About your camera. - Update the camera firmware (Do not take this option) - Update the camera firmware in the SD - Release the camera firmware
* # * # 7594 # * # * This code directly off your phone, without going through the menu.
* # * # 273283 * 255 * 663 282 * # * # * It opens a screen that lets you copy your media.
* # * # 197328640 # * # * To access the service mode (used for deiferentes tests) and use the following code * # * # 232339 # * # * Or * # * # 526 # * # * O * # * # 528 # * # * - WLAN test * # * # 232338 # * # * - Show the current MAC address * # * # 1472365 # * # * - GPS test * # * # 1575 # * # * - Other GPS test * # * # 232331 # * # * - Bluetooth Test * # * # 232337 # * # - Displays the Bluetooth terminal address * # * # 8255 # * # * You open the monitor Gtalk. Codes Firmware for information: * # * # 4986 * 2650468 # * # * - PDA, Phone, H / W, RFCallDate * # * # 1234 # * # * - PDA and Phone * # * # 1111 # * # * - FTA SW Version * # * # * # * 2222 # - FTA HW Version * # * # * # * 44336 # - PDA, Phone, CSC, Build Time, changelist number codes to run different tests at the factory: * # * # 0283 # * # * - Packet Loopback * # * # 0 * # * # * - LCD Test * # * # 0673 # * # * O * # * # 0289 # * # * - Melody test * # * # 0842 # * # * - Device test (Vibration test and BackLight test) * # * # 2663 # * # * - Touch screen version * # * # 2664 # * # * - Touch screen test * # * # 0588 # * # * - Proximity sensor test * # * # 3264 # * # * - RAM version
Where in the heck did you find that listing. That's a hella list than the one I got.
Device: Samsung Tmobile S2 [SGH-T989]
ROM: BlackEdition R7 ICS Rom
Radio: Blaze 4G ICS Radio
Tweak Script: Newest Supercharger V6 ICS with modified services.jar, KAK, 3G Turbocharger
To choose specific network band
*#2263#
falcon67 said:
To choose specific network band
*#2263#
Click to expand...
Click to collapse
Yeah. I've played with that one alot in different areas where 3G is faster than HSPA in some area that im in.
Device: Samsung Tmobile S2 [SGH-T989]
ROM: BlackEdition R7 ICS Rom
Radio: Blaze 4G ICS Radio
Tweak Script: Newest Supercharger V6 ICS with modified services.jar, KAK, 3G Turbocharger
falcon67 said:
To choose specific network band
*#2263#
Click to expand...
Click to collapse
easy way to remember is *#band#
DriftorX said:
Where in the heck did you find that listing. That's a hella list than the one I got.
Device: Samsung Tmobile S2 [SGH-T989]
ROM: BlackEdition R7 ICS Rom
Radio: Blaze 4G ICS Radio
Tweak Script: Newest Supercharger V6 ICS with modified services.jar, KAK, 3G Turbocharger
Click to expand...
Click to collapse
You're welcome....
I tried out the "band" code yesterday, but I was unsure as to what the choices meant...Can someone explain what each choice means? thanks
Thanks for this complete list of codes. Really handy!
Sent from Jelly Bean'd T989 using Tapatalk 4 Beta 6.
dave2metz said:
I tried out the "band" code yesterday, but I was unsure as to what the choices meant...Can someone explain what each choice means? thanks
Click to expand...
Click to collapse
This code was working when I was on ICS. Now I'm on JB and this same dead end screen appears on my phone too.
Yes JB has borked the codes for me too...
Sent from Jelly Bean'd T989 using Tapatalk 4 Beta 6.

Categories

Resources