Still, touch screen is not working for QT/E application.
I got the following error:
Code:
QWSTslibMouseHandlerPrivate: ts_open() failed with error: 'No such file or directory'
Please check your tslib installation!
This is my script to run QT/E demo program:
Quote:
export scriptdir=`/usr/bin/dirname $0`
export QTDIR=/usr/local/Trolltech/QtEmbedded-4.5.3-arm
export PATH=$QTDIR/bin:$PATH
export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH:/usr/lib
export HOME=$scriptdir
export TSLIB_TSDEVICE=/dev/input/event0
export QWS_MOUSE_PROTO=Tslib:/dev/intput/event0
export TSLIB_PLUGINDIR=/usr/lib/ts
export TSLIB_CONSOLEDEVICE=none
export TSLIB_CONFFILE=/etc/ts.conf
export TSLIB_CALIBFILE=/etc/pointercal
export TSLIB_FBDEVICE=/dev/fb0
#export TS_INFO_FILE=/sys/devices/virtual/input/input0/uevent
#export QWS_KEYBOARD=TTY:/dev/tty1
cd $scriptdir
./application -qws
|