summaryrefslogtreecommitdiffstats
path: root/rules/tslib.in
blob: f74751564eee730e818b5daf7503ba1126441132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
## SECTION=multimedia_libs

menuconfig TSLIB
	tristate
	select LIBC_DL
	select GCCLIBS_GCC_S
	prompt "tslib                         "
	help
	  Tslib is an abstraction layer for touchscreen panel events,
	  as well as a filter stack for the manipulation of those
	  events. It was created by Russell King of arm.linux.org.uk.
	  Examples of implemented filters include jitter smoothing
	  and the calibration transform. Tslib is generally used on
	  embedded devices to provide a common user space interface
	  to touchscreen functionality.

if TSLIB

config TSLIB_TS_CALIBRATE
	bool
	prompt "Install ts_calibrate on target"
	help
	  ts_calibrate is a graphical tool to calibrate the
	  touch sensor. The app asks the user to tap a
	  sequence of 5 cross-hairs with a stylus. It
	  recalibrates the touchscreen, then exits.

config TSLIB_TS_TEST
	bool
	prompt "Install ts_test on target"
	help
	  Basic test program for touchscreen library.

endif