代码搜索:touchScreen
找到约 596 项符合「touchScreen」的源代码
代码结果 596
www.eeworm.com/read/414605/2143549
h touchscreen_zaurus.h
#ifndef TS_DEVICE
#define TS_DEVICE "Zaurus"
#define TS_DEVICE_FILE "/dev/sharp_ts"
struct ts_event {
long x;
long y;
long pressure;
long long timestamp;
};
#endif
www.eeworm.com/read/414605/2143556
c mou_touchscreen.c
/*
* Generic touchscreen driver
*
* Copyright (c) 2003, Century Software, Inc.
* Written by Jordan Crouse
*/
/* The following devices are supported by this driver:
www.eeworm.com/read/414605/2143573
h touchscreen_ipaq.h
#ifndef TS_DEVICE
#define TS_DEVICE "Ipaq"
#define TS_DEVICE_FILE "/dev/h3600_tsraw"
struct ts_event {
short pressure;
short x;
short y;
short pad;
};
#endif
www.eeworm.com/read/414605/2143578
h touchscreen_ads.h
#ifndef TS_DEVICE
#define TS_DEVICE "ADS"
#define TS_DEVICE_FILE "/dev/ts"
struct ts_event {
short x;
short y;
short pressure;
};
#endif
www.eeworm.com/read/370367/9604734
pjf touchscreen_test.pjf
# Embest IDE Project File, Format Version 1.00
# WARNING: DO NOT EDIT OR DELETE THIS PROJECT FILE!
PROJECT_NAME
touchscreen_test
CONFIG
CPU
MODULE=arm7.DLL
www.eeworm.com/read/370367/9604736
ews touchscreen_test.ews
# Embest IDE Workspace File, Format Version 1.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
CORE_INFO_TYPE
Workspace
CORE_INFO_VERSION
1.00
www.eeworm.com/read/267237/11188918
pjf touchscreen_test.pjf
# Embest IDE Project File, Format Version 1.00
# WARNING: DO NOT EDIT OR DELETE THIS PROJECT FILE!
PROJECT_NAME
TouchScreen_Test
CONFIG
CPU
MODULE=arm7.DLL
www.eeworm.com/read/267237/11188923
opt touchscreen_test.opt
[BKPT:::]
[ChildWndPos:::]
D:\EmbestIDE\Examples\Samsung\S3CEV40\TouchScreen_Test\tp.c;0;0;1;0;0;638;289;0
D:\EmbestIDE\Examples\Samsung\S3cev40\uCOS-II\s3c44b0\uhal\44b.h;352;0;1;22;22;647;315;0
www.eeworm.com/read/267237/11188931
ews touchscreen_test.ews
# Embest IDE Workspace File, Format Version 1.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
CORE_INFO_TYPE
Workspace
CORE_INFO_VERSION
1.00
www.eeworm.com/read/152843/5661919
makefile
#
# Makefile for the mouse drivers.
#
# Each configuration option enables a list of files.
obj-$(CONFIG_TOUCHSCREEN_BITSY) += h3600_ts_input.o
obj-$(CONFIG_TOUCHSCREEN_CORGI) += corgi_ts.o
obj-$(CON