|
|
||||
Re: Screen not working!?!?
Sheesh, then make your own why are you crying about it?
I included my ts-calibration so people can easily get started. If it's not right, make you own... |
|
||||
Re: Screen not working!?!?
oh i did it was kinda lame i know how but i did not find out that was the problem untell after i hit post also i dont know how to change the title of the thread
|
|
||||
Re: Screen not working!?!?
im hoping this will be a thing of the past soon. Ive been asking the devs what we should do about this and we all feel differently.
We have 2 options. 1) default to a fixed set of values and if you need calibration then you generate your own. This is what we do in nand so we are never asked for ts calib. 2) Read the saved calib points from nand as the default. This can be done on haret. Hyc was able to get the gsm location and i have the address for cdma. THe second option is easier. Just a matter of writing the rootfs patch to get it done. If anyone has scripting skills and doesnt mind getting some email from me about all this crap i can guide in the right direction.
__________________
|
|
||||
Re: Screen not working!?!?
Quote:
|
|
||||
Re: Screen not working!?!?
You asked for it. :-p
For gsm Code:
modprobe mtdchar dd if=/dev/mtd/mtd0ro bs=2048 skip=18818 count=1 | od -I | \ awk '/^0001720/ {p3=$4 "," $5} \ /^0001740/ {p1=$2 "," $3; p4=$4 "," $5} \ /^0001760/ {p5=$2 "," $3; p2=$4 "," $5} \ END {print p1 "," p2 "," p3 "," p4 "," p5}' > /sdcard/ts-calibration rmmod mtdchar for cdma Code:
modprobe mtdchar dd if=/dev/mtd/mtd0ro bs=2048 skip=22850 count=1 | od -I | \ awk '/^0001720/ {p3=$4 "," $5} \ /^0001740/ {p1=$2 "," $3; p4=$4 "," $5} \ /^0001760/ {p5=$2 "," $3; p2=$4 "," $5} \ END {print p1 "," p2 "," p3 "," p4 "," p5}' > /sdcard/ts-calibration rmmod mtdchar If you want to test, just type that via ADB and you will see the points you have stored from winmo ![]() |
This post has been thanked 1 times. |
![]() |
|
|
|