Control Panel apps in WAD - JAM, MDA Compact, S100 General

How can I put Control Panel apps in WAD?

CreaTe A shotcut: \Windows\cplmain.cpl,4
(THIS IS FOR mEMORY)
Ecco l'elenco di tuttii settingi collegabili d un'icona sul dektop:
1 = Password
2= Owner Information
3= Power
4 = Memory
5 = About
7 = Screen
8 = Input
9 = Sounds & Notifications
10 = Remove Programs
11 = Menus
12 =Buttons
13 = Today
15 = Beam
16 = Clock & Alarms
17 = Network Cards
18 = Regional Settings
19 = Connections
20 = Phone
22 = Certificates
23 = Bluetooth
24 = Error Reporting
25 = GPS

Thanks a lot, man. I think I was blind or lack of sleep! It's all in Lakeridgesoftware forum.

Related

HTC - 6 Tab Home PlugIn & Customization

Again the idea was to have all the registry setting ready after a Hard-Reset or a ROM-Flash. The last two months I have made my Cruise a ROM lab testing every ROM I found to this FANTASTIC Forum.
And I'm very happy that I have a PDA that can be customizable.
So here is the cab ...
http://www.turboupload.com/download/00pEcIE03vrj/HTC_6TabHomePlugIn.cab
It contains:
- HTC Home PlugIn Setting/Customization (Start / Settings / Today / HTC Home)
- HTC 6 Tab Home PlugIn
HKLM\Software\HTC\HTCHome
New string "Tabsetting = 1,2,3,4,5,6"
1 = Clock tab
2 = Favorite People tab
3 = Weather tab
4 = Launcher tab
5 = Music tab
6 = Profiles tab
Removed "HKLM\Software\OEM\MASD\Quickdial"
- dd/MM/yy Format
HKLM\nls\overrides\SSDte = "dd/MM/yy"
- HH:mm:ss Format
HKLM\nls\overrides\STFmt = "HH:mm:ss"
- Speedup Touchflo By increasing Frames Per Second
HKLM\Software\HTC\Biotouch\Biotouch\DownFPS = "30"
HKLM\Software\HTC\Biotouch\Biotouch\LightFPS = "30"
HKLM\Software\HTC\Biotouch\Biotouch\UpFPS = "30"
- Activate GPS Photo in Camera
HKLM\SOFTWARE\HTC\Camera\P9\Enable = "1"
- No ActiveSync if Phone is Disconnected
HKLM\Software\Microsoft\Windows CE Services\AllowLSP = "0"
Again the THANKS and the Gredits goes to people who discovered these.

InTheHand Bluetooth - Weird stream problems

I am currently working on my "SciLor's WiMoBlue". The new protocol is ready. Everything works fine, until I send much data at the same time.
For example if I try to send an image in that way:
Code:
Public Sub SendImage(ByVal Image As Bitmap, ByVal Position As Point, ByVal Format As ImageFormat)
Dim PosX, PosY, Width, Height As Byte()
Dim ImageStream As New IO.MemoryStream
Dim ImageLength As Integer
Dim ImageLengthBytes As Byte()
Dim ImageBuffer(MaxChunkSize - HeaderSize - 1) As Byte
PosX = BitConverter.GetBytes(Position.X)
PosY = BitConverter.GetBytes(Position.Y)
Width = BitConverter.GetBytes(Image.Width)
Height = BitConverter.GetBytes(Image.Height)
Image.Save(ImageStream, ImageFormat2ImagingFormat(Format))
ImageStream.Seek(0, SeekOrigin.Begin)
ImageLength = ImageStream.Length
ImageLengthBytes = BitConverter.GetBytes(ImageLength)
SendData(BuildCommand(BaseProtocol.Image, ImageProtocol.Initiate, CombineBytes(PosX, PosY, Width, Height, ImageLengthBytes)))
Thread.Sleep(2000)
Dim DataPos As Integer
For DataPos = 0 To ImageStream.Length - MaxChunkSize - HeaderSize - 1 Step MaxChunkSize - HeaderSize
ImageStream.Read(ImageBuffer, 0, MaxChunkSize - HeaderSize)
SendData(BuildCommand(BaseProtocol.Image, ImageProtocol.Data, ImageBuffer))
'WaitForNextChunk = True
'Do While WaitForNextChunk = True
'Loop
'Thread.Sleep(2000)
Next
ImageBuffer = New Byte(ImageLength - DataPos - 1) {}
ImageStream.Read(ImageBuffer, 0, ImageBuffer.Length)
SendData(BuildCommand(BaseProtocol.Image, ImageProtocol.End, ImageBuffer))
End Sub
SendData:
Code:
If Data.Length > MaxChunkSize Then
MsgBox("Data to long... " & vbNewLine & "SendSize:" & Data.Length & vbNewLine & "MaxSize:" & MaxChunkSize)
Else
If btClient.Connected = True And isRecieving = True Then
btStream.Write(Data, 0, Data.Length)
btStream.Flush()
End If
End If
Recieving Part:
Code:
While isRecieving = True
If btStream IsNot Nothing And btStream.DataAvailable = True Then
Try
Recieved = btStream.Read(myHeader, 0, myHeader.Length)
If myHeader(0) = HeaderIdentifier And myHeader(1) = OtherModeHeader Then
btStream.Read(myDataSize, 0, 2)
DataLength = BitConverter.ToInt16(myDataSize, 0)
myBuffer = New Byte(DataLength - 1) {}
Recieved = 0
Do Until Recieved = DataLength
If btStream.DataAvailable = True Then
Recieved += btStream.Read(myBuffer, Recieved, DataLength - Recieved)
End If
Loop
ExecuteCommand(myHeader(2), myHeader(3), myBuffer)
Else
Debug.WriteLine("WrongData")
Exit While
End If
Catch ex As Exception
Debug.WriteLine(ex.Message)
If Recieved = 0 Then
Exit While
End If
End Try
End If
End While
If I send the image, without Thread.Sleeps (huighe ones). The recieving stream gets weird. The gets btStream.DataAvailable = False forever. If I remove that ckeck, it hangs at the btStream.Read.
I also tried to fix that with waiting for the answer of the server, but the problem doesn't get solved.
Do you have any idea how to fix that problem?. In that speed the image sending is worthless
SciLor

##634# Codes etc

Ok just saw this as part of the know your MAC address thread but wanted to pursue this just in case we find something new
##634# takes the phone into Diagnostic mode
*#1234# lists PDA: Phone and CSC version (like in Android?)
Does this mean Odin could flash it?
when in Diag mode:
*#1111# Testing Mode Software - potential for other commands
keep entering numbers until you see a - minus number then keep presing back until only the minus sign left, you will then see a new menu
Go into Debug, then option 8 Phone Control, then option 6 Network Lock and report findings please.
1 Debug Screen
| |
| 1 Basic Info
| 2 MM Information
| 3 RR Information
| 4 Neighbour Cell
| 5 GPRS Information
| 6 SIM Informtion
| 7 Handover
| 8 Phone Control
| 9 Antenna/ADC
2 Version Information
| |
| 1 SW Version
| 2 HW Version
3 UMTS RF NV
| |
| 1 RF NV Read
| 2 RF NV Write
4 GSM RF NV
| |
| 1 RF NV Read
| 2 RF NV Write
5 Audio
| |
| 1 Handset
| 2 Headset
| 3 Speaker
| 4 BT Headset
| 5 Rebuild All
| 6 TTY Mode Set
6 Common
| |
| 1 FTM
| 2 Debug Info
| 3 RF Scanning
| 4 Diag Config
| 5 WCDMA Set Channel
| 6 NV Rebuild
| 7 Factory Test
| 8 Force Sleep
| 9 GPS
*#2222# Testing Mode Hardware - potential for other commands
same menu as *#1111# using same minus sign procedure to get to it
*#0987# Multitouch test mode
*#2580# Integrity Control On / Off (1 is on 2 is off)
*#03# SMD Header Info 70120001127750
*#05# Simple Test (1, Vibration; 2, Camera; 3, Acceleration; 4, Proximity; 5, Light; 6, Key; 7, TSP; 8, Battery; 9, Loopback)
*#80# check pattern input co-ordinates?
*#777# Vphone 777 Done
*#9090# Test Mode 1, USB; 2, UART[*]; 3, DBG MSG On; 4, DBG MSG Off[*]
Shall I shutup now?
No don't shutup, creating this thread was a good idea.
Apparently in this menu there is a way to get tethering to work!
*#7284# is what you might be looking for
funny thing is, once you've set this my PC recognises it as an Android ADB Interface!!! Windows and Drivers, don't you just love 'em
More info here: http://mobilitydigest.com/windows-phone-7-tethers-you-can-do-it-now-heres-how/
pLUSpISTOL said:
No don't shutup, creating this thread was a good idea.
Apparently in this menu there is a way to get tethering to work!
Click to expand...
Click to collapse
*#0*# LCD test and other sensors
*#0011# enter Test Mode
*#0228# enter Debug Mode with battery info
*#1472365# enter in Location Service
*#7284# to setting tethering usb
*#7465625# for Personalize - Lock Status - Network Lock - Subset - SP Lock - Cp Lock
Can we unlock the phone using these codes? I mean to use other carriers SIM card, and also fix the MMS issue
gnasher666 said:
Go into Debug, then option 8 Phone Control, then option 6 Network Lock and report findings please.
Click to expand...
Click to collapse
All I see is:
Diagnostic Application
Test Mode
6
Hope this helps someone.
I was hoping to find a way in these options to turn off the damn screen blanking when a call is made! My phone does not want to recover from the blank screen even when placed on a flat surface during the call.
EDIT: Have just noticed that you can enter numbers after the [6] Network Lock screen displays 6. First few I have tried returns to "Menu not exist press back key - Current command is 1827364" screen
Keep tapping 6.... untill there is a - sign.... i got caught out with that too... i'll upload a video quicly on pootube...
Accelerometer
Just ****ed up my accelerometer in the *#0*# menu, and now the screen doesn't rotate at all anymore.
There's a "Cal" button that I used, presumably to be able to configure the correct rotation of the phone, but I don't understand how to use the "True" or "False" returns that come up...
How do I use these controls?
Can I reset it? How?
SengUK said:
All I see is:
Diagnostic Application
Test Mode
6
Hope this helps someone.
I was hoping to find a way in these options to turn off the damn screen blanking when a call is made! My phone does not want to recover from the blank screen even when placed on a flat surface during the call.
EDIT: Have just noticed that you can enter numbers after the [6] Network Lock screen displays 6. First few I have tried returns to "Menu not exist press back key - Current command is 1827364" screen
Click to expand...
Click to collapse
Crap record, Will find a better device to record it on in the morning, but shows the basic jist of how to get into the menu past the bit your on about.
http://www.youtube.com/watch?v=bRUgFzgjNCM
Necroman_AI said:
Can we unlock the phone using these codes? I mean to use other carriers SIM card, and also fix the MMS issue
Click to expand...
Click to collapse
guys... any news here?
I'll get mine early next week, and try this out as soon as I do... Has anyone tried the "Antenna / ADC" Menu? It's not all that likely, but ADC could stand for "Automatic Data Configuration" (the system used to set the MMS settings) rather than "Analog to Digital Converter" there...
Hi all, thanks for this info. Does anyone know if it is possible to calibrate the touchscreen of the Samsung Omnia 7? I noticed that the calibration is a little bit off. I can see that when I do the multi-touch test or when I use the app called "fingerpaint". I saw the "LCD Test" which has an item "Touch" but it is only a test, not a 'cal' (calibration), like some of the other menu's have.
When I touch the screen on the left side, the responsive area is a little on the left of my finger. It is not much, but I might consider returning the device if I cannot fix this myself. The device is only one day old, and I like it very much. If I would return it they will probably be able to recalibrate it, but I'm afraid that it may take a few weeks before I get it back. And I really don't like missing it already.
Thanks!
http://forum.xda-developers.com/showthread.php?p=9199305&mode=linear
turn off 3G
Hi
There is a possibility to turn off 3G. You have to go into "Debug Screem" like gnasher666 has written. Then you choose Phone Control and then Network Control. There you choose Band Selection, where you can choose which network you want.
Bye,
Pinggi
**ALL** diagnostic codes for SAMSUNG devices
I reverse engineered the Diagnostic Menu Application. It contains a list of configuration "Titles" with corresponding hash-codes. I made a tool to reverse the hash-codes to dial-codes. The dial-codes may not be the same as some codes that were already known, but the dial-codes are absolutely correct for these menu. Differences are due to hash-collisions (same hash-code may have multiple possible dial-codes). I just used the shortest dial-codes for every menu.
The list of menu's is very long and I discovered that not all menu-codes were not actually implemented. I guess this list of codes is used for all Samsung devices (possibly also for Galaxy S and older Windows Mobile devices). So not all dial-codes may actually work on your device.
WARNING!! The menu's can configure low-level settings of your phone. And if you don't know what you're doing you may brick your device or maybe hard-reset the device and loose all your data and settings. Or you may faulty calibrate your sensors. Be very, very careful with experimenting!! I will not take any responsibility for damaging your device in any way.
I would personally be very interested if anyone finds a way to get the device in download-mode by using these menu's (I have a bad bootloader which does not let my Samsung Omnia 7 go into download-mode to flash it to a newer firmware).
This is the list with menu-titles, dial-codes and their hashcode:
Code:
FTAMain = 15 (0x686)
QUALCOMM TEST = *09# (0x17DB96)
TMOServiceMenu = *74*# (0x31710C2)
SMDINFO = *#03# (0x30C0953)
SIMPLE FUNCTION TEST = *#05# (0x30C0995)
IMEI NUMBER = *#06# (0x30C09B6)
VIEWHISTORYNW = *#07# (0x30C09D7)
LCDTEST = *#0*# (0x30C082A)
QWERTYTEST = *#1*# (0x30C0C6B)
BATT TEST = *#2*# (0x30C10AC)
BRIGHTNESS TEST = *#3*# (0x30C14ED)
TouchDelta 80 = *#80# (0x30C2AF8)
LIGHTTEST = *#12*# (0x648DBCDD)
BTLOGDUMP = *#232# (0x648E4E87)
WIFI FACTORY TEST = *#526# (0x648FEFED)
RILNETLOG = *#638# (0x649080D1)
RILDUMP = *#745# (0x64911110)
VPHONE770 = *#770# (0x64911D2E)
VPHONE771 = *#771# (0x64911D4F)
VPHONE772 = *#772# (0x64911D70)
VPHONE773 = *#773# (0x64911D91)
VPHONE774 = *#774# (0x64911DB2)
VPHONE775 = *#775# (0x64911DD3)
VPHONE776 = *#776# (0x64911DF4)
VPHONE777 = *#777# (0x64911E15)
VPHONE778 = *#778# (0x64911E36)
VPHONE779 = *#779# (0x64911E57)
SR TEST = *#780# (0x6491216F)
VT DUMP = *#938# (0x649225F4)
Disable Testbed = #12358# (0xFC28BE89)
Enable Testbed = *12358# (0x170067D0)
DEBUGMODE1 = *#0011# (0xF63246F2)
BATTERYINFO = *#0228# (0xF63364DC)
PHONELOOPBACKTEST = *#0283# (0xF6337DBD)
AUDIOTEST2 = *#0289# (0xF6337E83)
FMRADIORX = *#0368# (0xF6340241)
LIGHTSENSORTEST = *#0589# (0xF63523A6)
RRCVERSION = *#0599# (0xF63527E7)
AUDIOTEST = *#0673# (0xF635AB00)
SOUNDTEST = *#0675# (0xF635AB42)
RTC = *#0782# (0xF6363B81)
DEVICETEST = *#0842# (0xF636B6DE)
ILLUMINATIONTEST = *#0843# (0xF636B6FF)
MultiTouch = *#0987# (0xF63754E8)
SWversionFTA = *#1111# (0xF644EBD4)
MOUSETEST = *#121*# (0xF645774E)
SWversionEx = *#1234# (0xF645811A)
MOUSECAL = *#123*# (0xF6457FD0)
MOUSECAL06 = *#126*# (0xF6458C93)
GPSTEST = *#1575# (0xF6473762)
MICROUSB TEST = *#1793# (0xF6485864)
HWversionFTA = *#2222# (0xF6579518)
BANDSELECTION = *#2263# (0xF657A63D)
PHONEDUMP = *#2454# (0xF658BADF)
CAMERAUPDATE = *#2470# (0xF658C2DD)
CAMERADISABLE = *#2480# (0xF658C71E)
NAVIKEY TEST = *#2486# (0xF658C7E4)
INTEGRITY = *#2580# (0xF659537F)
TouchFirmare 2663 = *#2663# (0xF659D7C1)
TouchDelta 2664 = *#2664# (0xF659D7E2)
TouchDelta 2665 = *#2665# (0xF659D803)
RILNETLOG OFF = *#6380# (0xF6A09CC1)
RILNETLOG ON = *#6381# (0xF6A09CE2)
NETLOCK NETWORK = *#6955# (0xF6A3DAE9)
USBPATHCHANGE = *#7284# (0xF6B22965)
POWERONATTACH = *#7298# (0xF6B22E2A)
SELF DIAGNOSTIC MODE = *#7353# (0xF6B2A8E2)
DebugOption = *#7450# (0xF6B334E0)
ERROR REPORT ON = *#7451# (0xF6B33501)
ERROR REPORT VERIFY = *#7452# (0xF6B33522)
NETLOCK SERVICE = *#7755# (0xF6B4DAA8)
VPHONE DISABLED = *#77*0# (0xF6B4AB38)
VPHONE ENABLED = *#77*1# (0xF6B4AB59)
UARTCHANGER = *#9090# (0xF6D54562)
DEBUGDUMP = *#9900# (0xF6DA0E82)
PILEDUMP = *#9901# (0xF6DA0EA3)
NETLOG LOG START = *#9905# (0xF6DA0F27)
DEBUG RIL DUMP = *#9906# (0xF6DA0F48)
ERRORREPCAB INSTALL = *#9907# (0xF6DA0F69)
GUMITEST3G CAB INSTALL = *#9908# (0xF6DA0F8A)
SUWON3G CAB INSTALL = *#9909# (0xF6DA0FAB)
UARTPATH = *#9910# (0xF6DA12C3)
BATTERYMONITOR = *#9911# (0xF6DA12E4)
CONNECTION SETTING = *#9920# (0xF6DA1704)
VERIFYCOMPARE = *#9990# (0xF6DA34CB)
YSSHINTEST = *#9999# (0xF6DA35F4)
VersionScript = 19104#2* (0xD21FC43E)
BLUETOOTH LOG DISABLE = 20652609 (0x1598F3DE)
BLUETOOTH LOG ENABLE = 20652619 (0x1598F3FF)
BT SSPDEbugModeEnable = 20652629 (0x1598F420)
BT SSPDEbugModeDisable = 20652639 (0x1598F441)
OMADMCLIENT LOG DISABLE = 20653609 (0x1599803F)
OMADMCLIENT LOG ENABLE = 20653619 (0x15998060)
CELOG LOG DISABLE = 20654609 (0x159A0CA0)
CELOG LOG ENABLE = 20654619 (0x159A0CC1)
TOTALCALLTIME = 2934331* (0xC35403F3)
RESET CUSTOM = 35180948 (0x77496B66)
RESET FACTORY = 35190718 (0x775B7B02)
ERASE IMEIITEM = 35190728 (0x775B7B23)
IMEI ADJUST = 35190738 (0x775B7B44)
BLUETOOTH RF TEST = 3##65*88 (0xECE73A9E)
BLUETOOTH AUDIO TEST = 3##65*98 (0xECE73ABF)
AutoSimSetting = 40*047#3 (0xD1C556DF)
PVKKey = 40*549#3 (0xD21FD9E6)
RESET FACTORY WITHDEFAULTLANGUAGE = 76264513 (0x777E1362)
NONSLEEPCALL OFF = *#069*0# (0xBCEBFF49)
NONSLEEPCALL ON = *#069*1# (0xBCEBFF6A)
LEDTEST = *#14789# (0xBF1C1ADD)
DMSessionInit = *#15428# (0xBF2C7494)
CIPHERING = *#32489# (0xC3A095FA)
CAMERAUPDATESVC = *#32589# (0xC3A1225B)
LOGDUMPMGR = *#33284# (0xC3B19514)
SR DISABLED = *#780*0# (0xCD5F5D49)
SR ENABLED = *#780*1# (0xCD5F5D6A)
NETLOCK SUBSET = *#78255# (0xCD60A57B)
LAUNCH UAEDIT = *#92782# (0xD1A12DFC)
PdaBuildTime = *#99820# (0xD2204C1C)
VersionTime = *#99821# (0xD2204C3D)
WIFI TEST = 0373385#6 (0xECE73BA6)
EN LOCK NW = 074578132 (0xBBF27D35)
GCFTESTMODE ENTER = 086#58023 (0x1807BAE3)
FILE SYSTEM TEST = 089559715 (0x28F3F681)
AUDIOGAINCONTROL = 08#766104 (0x902D68E3)
DIS LOCK SUB NW = 17#991#3* (0x1D45A6AE)
PVKFileName = 18*357#25 (0x161B193C)
EN LOCK SUB NW = 193582504 (0xBC073A15)
GPSTESTTOOL = 1#8865#55 (0xF61EC09C)
EN LOCK CORP = 1*0273411 (0xF62C007D)
EN LOCK SVC = 1*0278411 (0xF62EBE62)
DIS LOCK NW = 20789802* (0x1D30E9CE)
SellOutSMS = 2615#0922 (0xD04CA8DE)
TFlashUnPairing = 30334*733 (0x51B892C4)
DIS LOCK SVC = 38025*93# (0xCA957BDB)
GPSTESTTOOL2 = 400#40*08 (0xB9F6D60D)
GPSTESTXTRA = 400#40*18 (0xB9F6D62E)
SerialNumber = 5317*0648 (0x6E256D8C)
EN LOCK SIM = 5494585*3 (0xBC051995)
SERVERURL = 553378683 (0xD8389060)
SLIDECOUNT = 584644021 (0xF0BF3052)
SellOutSMSTestMode = 597#*224# (0x96E7B26D)
APPSLAUNCHER = 5**6244*3 (0x33B0B76)
SLOGSERIAL M2 = 66#6757#1 (0x7050E07C)
AutoReceive Enable = 7160*5088 (0xEF2C5E0D)
TESTMODE = 718071#49 (0x8A09ACC8)
RESET SERVICE = 72673#00# (0xEC5B4BEF)
ReactivateSellOutSMS = 74201#086 (0x807DB65F)
AUDIOCODEC = 7#16#1#37 (0x902D68C2)
ADMIN GENERIC = 838*5448* (0xC8E890AC)
SLOGSERIAL ALL ON = 8644*3081 (0x705107AC)
VT MANUALSETTING = 8802*7*5# (0x104384B5)
DISLOCK SIM = 98217*243 (0x1D43862E)
DMTESTMENU = 9#7357764 (0x414D9633)
SLOGSERIAL ALL OFF = #22#6214# (0x7050E03A)
SLOGSERIAL M1 = #22#6215# (0x7050E05B)
SLOGSERIAL M3 = #22#6217# (0x7050E09D)
SLOGSERIAL M4 = #22#6218# (0x7050E0BE)
SLOGSERIAL M5 = #22#6219# (0x7050E0DF)
ADMIN VODAFONE = #75471648 (0x1C42130D)
DisableSellOutSMS = *4587*676 (0x903477AF)
BLUETOOTH SEARCH TEST = *#232333# (0xECE73AE0)
RANDOM BT MAC = *#232336# (0xECE73B43)
BLUETOOTH MAC VIEWER = *#232337# (0xECE73B64)
WIFI MAC VIEWER = *#232338# (0xECE73B85)
PRECONFIGURATION = *#638738# (0x213EF313)
SELF DIAGNOSTIC MODE DISABLE = *#7353*0# (0x6E008D7C)
SLOGSERIAL M6 = *#745*06# (0x7050E100)
DIS LOCK CORP = 00*2*2#524 (0xCA92BDF6)
ADMIN TMOBILE = 0612824763 (0x1BFBCA67)
AutoReceive Disable = 09925572#3 (0xD4B8217D)
SWversionIn = 1309653522 (0xECB23FC4)
GPSTTFFTESTTOOL = 154*068271 (0xF61EBC7C)
SellOutSMSProductionMode = 1#3341#5#0 (0x96D7C68A)
LOCK STATUS INFO = 28##**23*0 (0x7D8C72E3)
SWversionNewIn = 32456464#7 (0xFD58D7FC)
zyborg said:
Just ****ed up my accelerometer in the *#0*# menu, and now the screen doesn't rotate at all anymore.
There's a "Cal" button that I used, presumably to be able to configure the correct rotation of the phone, but I don't understand how to use the "True" or "False" returns that come up...
How do I use these controls?
Can I reset it? How?
Click to expand...
Click to collapse
Go back to the setting, put the phone on a flat surface like a table and then press CAL.
Cal = Calibrate. It basically sets the accelerometer position when the phone is in default position.
*#0*# compass not working?
*#0*# -> compass .... but compass values are not well updated and does not reflect the real north?
Any hints ?
Uh, maybe a stupid question, but once I entered the diagnosis menu dialing the ##634#, I now have a Diagnosis application in the application list which takes me there as well. My question is that is it safe to 'uninstall' it? I mean will it just make the icon in the list go away or is there a chance it could actually uninstall the entire diagnosis program..?
Here is how to increase yr volume in OMNIA 7
==============================
Increase Speaker Volume
Enter the phone dialer
##634#, tap Call.
Enter code: *#0002*28346# or *#0002*28345#
Tap: Get, under the Device Gain (max/min)
First Box: 7
Second Box: change to 16000
Third Box set to 0
Tap: Set
Be sure that audience.cfg is set to on
Tap: Start
Tap: Home
Restart your phone.
After reboot, enter the same menu and just tab get to verify the settings
Increase Headphone Volume
Note: Make sure your headphones are plugged in first
Enter the phone dialer
##634#, tap Call
Enter code: *#0002*28346# or *#0002*28345#
Tap: Get under the Device Gain (max/min)
For "device gain" leave number 5, set 1100 (max) and -1100 (low)
Tap: Set
Verify that AUDIENCE.CFG is ON
Tap: Start
Tap Home
Restart your phone.
After reboot, enter the same menu and just tab get to verify the settings
Enjoy

[Q] Reduce wifi scan delays

Hi guys,
I'm currently working on a indoor positioning project. I'm using WiFi signals to do this. I've tested a couple of phones and tablets but they all have a different delay between the scans. This varies from 600ms to 6 seconds. I'm looking for a way to get the scans as fast as possible 2/3 or maybe 4 scans per second. Perhaps tweaking the roms for the devices, this is no problem at all but then I need to know what I need to tweak of course.
Thnx in advance,
flitjes
Try WiFi analyzer from the market. It has a sgetting to adjust the scan interval. Otherwise, the scan interval is typically set in build.prop
You could fiddle around with sysctl in the console to see if something changes it.
sysctl -a|grep wlan gives you a list of possible candidates.
Isnt this a build.prop edit?
Sent from my Desire HD using XDA App
pretty sure you will have to root, if you havent done so already...
i havent...
Hi guys, I've rooted my phone so that is not a problem. I'm going to try the things u guys sugessted.
I've tried these things but I'm still not progressing.
When I edit the build.prop it only changes the interval of scanning for accesspoints when no application is running.
The problem I'm facing is: My application can't scan fast enough. I'm only getting 2 scans a second. And I'm looking for about 10 scans a second.
Maby this has to be changed on driver level?
I've found out something more. I've switch roms a couple of times and did the measurement of the scanrate. Because of the results I can conclude that some romes scan faster then others. But can't find out why?
Hi,
I have exactly the same question than flitjes. Is someone found a solution ?
I noted a sampling of:
- 5.4s on Nexus 5X (up to 3.3s if i change the ROM)
- 3s on Nexus 5
- 0.6s on Nexus 4
It's a bit hard to use a 6s sampling for indoor positioning
Code:
[email protected]:/ # sysctl -a|grep wlan
net.ipv4.conf.wlan0.accept_local = 0
net.ipv4.conf.wlan0.accept_redirects = 1
net.ipv4.conf.wlan0.accept_source_route = 1
net.ipv4.conf.wlan0.arp_accept = 0
net.ipv4.conf.wlan0.arp_announce = 0
net.ipv4.conf.wlan0.arp_filter = 0
net.ipv4.conf.wlan0.arp_ignore = 0
net.ipv4.conf.wlan0.arp_notify = 0
net.ipv4.conf.wlan0.bootp_relay = 0
net.ipv4.conf.wlan0.disable_policy = 0
net.ipv4.conf.wlan0.disable_xfrm = 0
net.ipv4.conf.wlan0.force_igmp_version = 0
net.ipv4.conf.wlan0.forwarding = 1
net.ipv4.conf.wlan0.log_martians = 0
net.ipv4.conf.wlan0.mc_forwarding = 0
net.ipv4.conf.wlan0.medium_id = 0
net.ipv4.conf.wlan0.promote_secondaries = 0
net.ipv4.conf.wlan0.proxy_arp = 0
net.ipv4.conf.wlan0.proxy_arp_pvlan = 0
net.ipv4.conf.wlan0.route_localnet = 0
net.ipv4.conf.wlan0.rp_filter = 0
net.ipv4.conf.wlan0.secure_redirects = 1
net.ipv4.conf.wlan0.send_redirects = 1
net.ipv4.conf.wlan0.shared_media = 1
net.ipv4.conf.wlan0.src_valid_mark = 0
net.ipv4.conf.wlan0.tag = 0
net.ipv4.neigh.wlan0.anycast_delay = 100
net.ipv4.neigh.wlan0.app_solicit = 0
net.ipv4.neigh.wlan0.base_reachable_time = 15
net.ipv4.neigh.wlan0.base_reachable_time_ms = 15000
net.ipv4.neigh.wlan0.delay_first_probe_time = 5
net.ipv4.neigh.wlan0.gc_stale_time = 60
net.ipv4.neigh.wlan0.locktime = 100
net.ipv4.neigh.wlan0.mcast_solicit = 3
net.ipv4.neigh.wlan0.proxy_delay = 80
net.ipv4.neigh.wlan0.proxy_qlen = 64
net.ipv4.neigh.wlan0.retrans_time = 100
net.ipv4.neigh.wlan0.retrans_time_ms = 1000
net.ipv4.neigh.wlan0.ucast_solicit = 3
net.ipv4.neigh.wlan0.unres_qlen = 31
net.ipv4.neigh.wlan0.unres_qlen_bytes = 65536
sysctl: key 'net.ipv4.route.flush': Permission denied
net.ipv6.conf.wlan0.accept_dad = 1
net.ipv6.conf.wlan0.accept_ra = 2
net.ipv6.conf.wlan0.accept_ra_defrtr = 1
net.ipv6.conf.wlan0.accept_ra_mtu = 1
net.ipv6.conf.wlan0.accept_ra_pinfo = 1
net.ipv6.conf.wlan0.accept_ra_prefix_route = 1
net.ipv6.conf.wlan0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.wlan0.accept_ra_rt_table = -1000
net.ipv6.conf.wlan0.accept_ra_rtr_pref = 1
net.ipv6.conf.wlan0.accept_redirects = 1
net.ipv6.conf.wlan0.accept_source_route = 0
net.ipv6.conf.wlan0.autoconf = 1
net.ipv6.conf.wlan0.dad_transmits = 1
net.ipv6.conf.wlan0.disable_ipv6 = 0
net.ipv6.conf.wlan0.force_mld_version = 0
net.ipv6.conf.wlan0.force_tllao = 0
net.ipv6.conf.wlan0.forwarding = 1
net.ipv6.conf.wlan0.hop_limit = 64
net.ipv6.conf.wlan0.max_addresses = 16
net.ipv6.conf.wlan0.max_desync_factor = 600
net.ipv6.conf.wlan0.mtu = 1500
net.ipv6.conf.wlan0.ndisc_notify = 0
net.ipv6.conf.wlan0.optimistic_dad = 1
net.ipv6.conf.wlan0.proxy_ndp = 0
net.ipv6.conf.wlan0.regen_max_retry = 3
net.ipv6.conf.wlan0.router_probe_interval = 60
net.ipv6.conf.wlan0.router_solicitation_delay = 1
net.ipv6.conf.wlan0.router_solicitation_interval = 4
net.ipv6.conf.wlan0.router_solicitations = 3
net.ipv6.conf.wlan0.temp_prefered_lft = 86400
net.ipv6.conf.wlan0.temp_valid_lft = 604800
net.ipv6.conf.wlan0.use_oif_addrs_only = 1
net.ipv6.conf.wlan0.use_optimistic = 1
net.ipv6.conf.wlan0.use_tempaddr = 2
net.ipv6.neigh.wlan0.anycast_delay = 100
net.ipv6.neigh.wlan0.app_solicit = 0
net.ipv6.neigh.wlan0.base_reachable_time = 15
net.ipv6.neigh.wlan0.base_reachable_time_ms = 15000
net.ipv6.neigh.wlan0.delay_first_probe_time = 5
net.ipv6.neigh.wlan0.gc_stale_time = 60
net.ipv6.neigh.wlan0.locktime = 0
net.ipv6.neigh.wlan0.mcast_solicit = 3
net.ipv6.neigh.wlan0.proxy_delay = 80
net.ipv6.neigh.wlan0.proxy_qlen = 64
net.ipv6.neigh.wlan0.retrans_time = 100
net.ipv6.neigh.wlan0.retrans_time_ms = 1000
net.ipv6.neigh.wlan0.ucast_solicit = 3
net.ipv6.neigh.wlan0.unres_qlen = 31
net.ipv6.neigh.wlan0.unres_qlen_bytes = 65536
sysctl: key 'net.ipv6.route.flush': Permission denied
sysctl: key 'vm.compact_memory': Permission denied

[TOOL][AOSP]Xperia z1's pen mode activation with pressure sensitivity

->Rename "clearpad_pen.idc.rar" to "clearpad_pen.idc"
->Just simply put clearpad_pen.idc in "system/usr/idc"
->set the permissios to rw-r-r
->activate pen mode by this thread or clearpad-controls(glove,pen,vibration)(import them in kernel adiutor custom controls)
For best experience use Sony Sketch app from play store
Tested on raschads Aicp 14
post your own sketches right here
file content:
Code:
# Device Type
touch.deviceType = touchScreen
# Pressure
touch.pressure.calibration = physical
touch.pressure.scale = 0.15
#Size
touch.size.calibration = area
touch.size.scale = 32.69
# Touch Filter
touch.filter.level = 2
touch.filter.path = /system/lib/touchfilter/tftype4.so
touch.filter.tftype4.Enabled = 1
touch.filter.tftype4.AssumedDelayFactorA = -11.71
touch.filter.tftype4.AssumedDelayFactorB = 12.53
touch.filter.tftype4.AssumedDelayFactorC = -0.81
touch.filter.tftype4.MaxSpeed = 0.052
touch.filter.tftype4.PositionFactorA = 0.2
touch.filter.tftype4.PStablePositionFactor = 0
touch.filter.tftype4.DirectivePriorityFactor = 0.9
touch.filter.tftype4.LatestSpeedWeight = 0.9
touch.filter.tftype4.GapResolver = 0.8
touch.filter.tftype4.OrgSize = 8
touch.filter.tftype4.AccSize = 8
touch.filter.tftype4.AddInitialAcc = 1
touch.filter.tftype4.DefaultInitialAcc = 0
touch.filter.tftype4.DragRangeSize = 3
touch.filter.tftype4.NoAccDistanceMin = 15.0
touch.filter.tftype4.NoAccDistanceMax = 650.0
touch.filter.tftype4.NoAccRate = 0.3

Categories

Resources