please halp me to fix my touchscreen...!!
after upgrade to ICS .587 touch so error.!!
Thank for solution
hi,
this is due to a thermal sensor built in the phone... had the same problem... install gscript lite or $cripter from play store and run this script i found in a xda thread....
#!/system/bin/sh
dev=/sys/devices/platform/spi_qsd.0/spi0.0
app_id=`cat $dev/appid`
case "$app_id" in
"0x0603")
fw=touch_mango_seiko.hex
;;
"0x0103")
fw=touch_mango_sony_type1.hex
;;
"0x0113")
fw=touch_mango_sony_type2.hex
;;
"0x0203")
fw=touch_mango_hitachi.hex
;;
*)
fw=touch_mango_sony_type1.hex
;;
esac
cyttsp_fwloader -dev $dev -fw /system/etc/firmware/$fw -verify_only
sleep 5
reboot -p
should do the trick... hope this helps....