MiniGUI使用tslib进行屏幕矫正

可以通过修改src/oal/2410.c文件或新建一个的oal引擎来实现新的输入方式,新的输入方式使用tslib中的库,所以编译的时候要加入tslib的头文件和lib,以下是source code。至于minigui的配置方式参考minigui相应的文档即可。
*******************************************************************************************************
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>

#include "common.h"
#include "tslib.h"

#ifdef _SMDK2410_IAL

#include <sys/ioctl.h>
#include <sys/poll.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <linux/kd.h>

#include "ial.h"
#include "2410.h"

//#ifndef _DEBUG
//#define _DEBUG                    // for debugging
//#endif

#ifdef      _DEBUG
#undef _DEBUG                             // for release
#endif

/* for storing data reading from /dev/touchScreen/0raw */
typedef struct {
        unsigned short pressure;
        unsigned short x;
        unsigned short y;
        unsigned short pad;
 } TS_EVENT;

static unsigned char state [NR_KEYS];
static int mousex = 0;
static int mousey = 0;
static TS_EVENT ts_event;
static struct tsdev *ts;

/************************ Low Level Input Operations **********************/
/*
* Mouse operations -- Event
*/
static int mouse_update(void)
{
       return 1;
}

static void mouse_getxy(int *x, int* y)
{
       if (mousex < 0) mousex = 0;
       if (mousey < 0) mousey = 0;
       if (mousex > 639) mousex = 639;
       if (mousey > 479) mousey = 479;
#ifdef _DEBUG
       printf ("mousex = %d, mousey = %d/n", mousex, mousey);
#endif
       *x = mousex;
       *y = mousey;
}

static int mouse_getbutton(void)
{
       return ts_event.pressure;
}
#ifdef _LITE_VERSION
static int wait_event (int which, int maxfd, fd_set *in, fd_set *out, fd_set *except,
                       struct timeval *timeout)
#else
static int wait_event (int which, fd_set *in, fd_set *out, fd_set *except,
                      struct timeval *timeout)
#endif
{
       struct ts_sample sample;
       int ret = 0;
       int fd;
       fd_set rfds;
       int e;
       if (!in) {
             in = &rfds;
             FD_ZERO (in);
       }
       fd = ts_fd(ts);
       if ((which & IAL_MOUSEEVENT) && fd >= 0) {
             FD_SET (fd, in);
#ifdef _LITE_VERSION
             if (fd > maxfd) maxfd = fd;
#endif
        }
#ifdef _LITE_VERSION
       e = select (maxfd + 1, in, out, except, timeout) ;
#else
       e = select (FD_SETSIZE, in, out, except, timeout) ;
#endif
       if (e > 0) {
            // input events is coming
            if (fd > 0 && FD_ISSET (fd, in)) {
                  FD_CLR (fd, in);
                  ts_event.x=0;
                  ts_event.y=0;
                  ret = ts_read(ts, &sample, 1);
                  if (ret < 0) {
                        perror("ts_read()");
                        exit(-1);
                  }
                  ts_event.x = sample.x;
                  ts_event.y = sample.y;
                  ts_event.pressure = (sample.pressure > 0 ? 4:0);
                  if (ts_event.pressure > 0 &&
                        (ts_event.x >= 0 && ts_event.x <= 639) &&
                        (ts_event.y >= 0 && ts_event.y <= 479)) {
                        mousex = ts_event.x;
                        mousey = ts_event.y;
                  }
#ifdef _DEBUG
                  if (ts_event.pressure > 0) {
                                  printf ("mouse down: ts_event.x = %d, ts_event.y = %d,
ts_event.pressure = %d/n",
                                   ts_event.x, ts_event.y, ts_event.pressure);
                  }
#endif
                  ret |= IAL_MOUSEEVENT;
                  return (ret);
            }
      }
      else if (e < 0) {
            return -1;
      }
      return (ret);
}
BOOL Init2410Input (INPUT* input, const char* mdev, const char* mtype)
{
      char *ts_device = NULL;
      if ((ts_device = getenv("TSLIB_TSDEVICE")) != NULL) {
            // open touch screen event device in blocking mode
            ts = ts_open(ts_device, 0);
      } else {
#ifdef USE_INPUT_API
            ts = ts_open("/dev/input/0raw", 0);
#else
            ts = ts_open("/dev/touchscreen/ucb1x00", 0);
#endif
      }
      if (!ts) {
            perror("ts_open()");
            exit(-1);
      }
      if (ts_config(ts)) {
            perror("ts_config()");
            exit(-1);
      }
      input->update_mouse = mouse_update;
      input->get_mouse_xy = mouse_getxy;
      input->set_mouse_xy = NULL;
      input->get_mouse_button = mouse_getbutton;
      input->set_mouse_range = NULL;

      input->wait_event = wait_event;
      mousex = 0;
      mousey = 0;
      ts_event.x = ts_event.y = ts_event.pressure = 0;
      return TRUE;
}

void Term2410Input(void)
{
     if (ts)
          ts_close(ts);
}

#endif /* _SMDK2410_IAL */
*******************************************************************************************************
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值