通过NFS挂载根文件系统启动后。 先设置环境变量如下:
export V_ROOT=/usr/local/Trolltech/QtopiaCore-4.3.3-arm/tslib
export LD_LIBRARY_PATH=$V_ROOT/lib
export TSLIB_CONSOLEDEVICE=none
export TSLIB_FBDEVICE=/dev/fb0
export TSLIB_CALIBFILE=$V_ROOT/etc/pointercal
export TSLIB_CONFFILE=$V_ROOT/etc/ts.conf
export TSLIB_PLUGINDIR=$V_ROOT/share/ts/plugins
export TSLIB_TSDEVICE=/dev/input/ts0
执行ts_calibrate程序,发现在触摸屏上出现一个十字架,怎么点这个十字架都没有反应,查看ts_calibrate.c源码,经分析程序是停在
do {
printf("in the getxy\n");
if (ts_read_raw(ts, &samp[0], 1) < 0) {
perror("ts_read");
close_framebuffer();
exit(1);
}
} while (samp[0].pressure == 0);
这个循环里了。进一步查看ts_read_raw.c的源码,原来192行有
tseventtype = getenv("TSLIB_TSEVENTTYPE");
而我并没有设置TSLIB_TSEVENTTYPE环境变量,故添加环境变量
export TSLIB_TSEVENTTYPE=H3600
后问题解决。
阅读(7210) | 评论(1) | 转发(0) |