ts_read.c.svn-base

来自「通用触摸屏驱动库」· SVN-BASE 代码 · 共 49 行

SVN-BASE
49
字号
/* *  tslib/src/ts_read.c * *  Copyright (C) 2001 Russell King. * * This file is placed under the LGPL.  Please see the file * COPYING for more details. * * $Id: ts_read.c,v 1.4 2004/07/21 19:12:59 dlowder Exp $ * * Read raw pressure, x, y, and timestamp from a touchscreen device. */#include "config.h"#include "tslib-private.h"#ifdef DEBUG#include <stdlib.h>#include <stdio.h>#include <string.h>#endif/* This array is used to prevent segfaults and memory overwrites * that can occur if multiple events are returned from ts_read_raw * for each event returned by ts_read *//* We found this was not needed, and have gone back to the * original implementation */// static struct ts_sample ts_read_private_samples[1024];int ts_read(struct tsdev *ts, struct ts_sample *samp, int nr){	int result;//	int i;//	result = ts->list->ops->read(ts->list, ts_read_private_samples, nr);	result = ts->list->ops->read(ts->list, samp, nr);//	for(i=0;i<nr;i++) {//		samp[i] = ts_read_private_samples[i];//	}#ifdef DEBUG	if (result)		fprintf(stderr,"TS_READ----> x = %d, y = %d, pressure = %d\n", samp->x, samp->y, samp->pressure);#endif	return result;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?