[FIXED] FROYO Calibration Error -> open input device: Inappropriate ioctl for device

Search This thread

camro

Senior Member
Apr 20, 2007
1,832
33
[FIXED] FROYO Calibration Error -> open input device: Inappropriate ioctl for device

well, there are several threads about calibration problems ...
but nothing in detail ...

here we go....
basic is froyo 2.2 with haret 1.4 + no "ts-calibrate" file existing on fat32 (sdcard)

in init (startup) the calibration command failed to work ...


as you can see (below) - there in the script the calibration call via:
tssc-calibrate
then i can also see the message for clicking the 5 points, blabla...
(but the "white touch area" like as it is on diamond is not there ... and no time and it is jumping to next procedure in init script. the most users doesn't see that, because it does fast switch/show another lines ....)

then i see an error: (this comes from command "tssc-calibrate")
open input device: Inappropriate ioctl for device

any idea how to fix ?

Code:
for i in /sys/class/input/input* ; do
        if [ "`cat $i/name`" = "tssc-manager" ] ; then
                touchscreendir=$i
                echo "Touchscreen device directory is $i"
        fi
done

if [ -f /sdcard/ts-calibration ] ; then
        echo "Using Saved Touchscreen Calibration"
	echo 128,128,1903,128,128,1907,1903,1907,1024,1024 > $touchscreendir/calibration_screen
        cat /sdcard/ts-calibration > $touchscreendir/calibration_points
else
        mkdir /dev/graphics
        mknod /dev/graphics/fb0 c 29 0
        clear
        echo; echo; echo; echo; echo; echo; echo; echo "Calibrating Touchscreen:"
        echo "Click the Five Targets in order -- Top Left, Top Right, Middle, Bottom Left, Bottom Right"
	echo "(Tap lightly. The screen is quite sensitive.)"
        tssc-calibrate
        echo 0,0,0,0,0,0,0,0,0,0 | cmp -s $touchscreendir/calibration_points # determine if calibration is still null -- means failed calibration
        if [ $? -eq 0 ] ; then
                echo "Touchscreen Calibration Failed"
        else
                echo "Touchscreen Calibration Successful; Saving..."
                cat $touchscreendir/calibration_points > /sdcard/ts-calibration
        fi
fi

EDIT:
FIXED in latest kernel version "htc-msm-linux-20100818_154417-package.tar" and newer ...

for calibration - you must delete the "ts_calibrate" file on your sdcard.

cu camel
 
Last edited:

zero0007

Member
Nov 23, 2008
34
0
hey mate,

any news on this? Wish I could help you but I know nothing about this programming of this sort...as a matter of fact, who is putting this together? I mean, who is putting the versions online, shouldn't they know?

:|
 

camro

Senior Member
Apr 20, 2007
1,832
33
this problem is fixed in latest kernel.
if you use kernel "htc-msm-linux-20100818_154417-package.tar" or newer it is fixed.

the touchscreen problem (finger touch does recognize extra touch on left side ..) is not fixed now.