1FPIT(4) Kernel Interfaces Manual FPIT(4)
2
3
4
6 fpit - Fujitsu Stylistic input driver
7
9 Section "InputDevice"
10 Identifier "idevname"
11 Driver "fpit"
12 Option "Device" "devpath"
13 ...
14 EndSection
15
17 fpit is an Xorg input driver for Fujitsu Stylistic Tablet PCs.
18
19 The fpit driver functions as a pointer input device, and may be used as
20 the X server's core pointer.
21
23 This driver supports the touchscreen of the Stylistic LT and (with spe‐
24 cial options) of the Stylistic 500, 1000 and 2300.
25
26 Under Linux the Fujitsus serial port is not, by default, detected.
27 Therefore the following must be added to one of your start-up scripts.
28 (Either one of the X scripts, or to rc.local or similar).
29
30
31 setserial /dev/ttyS3 autoconfig
32
33 setserial /dev/ttyS3 IRQ 15 baud_base 115200 port 0xfce8
34
35 This driver now supports Stylistic 3400 (and possibly other passive-pen
36 systems) with a special "Passive" paramter. Try this serial configura‐
37 tion for the 3400:
38
39
40 setserial /dev/ttyS3 autoconfig
41
42 setserial /dev/ttyS3 uart 16450 irq 5 port 0xfd68
43
44
46 Please refer to xorg.conf(5x) for general configuration details and for
47 options that can be used with all input drivers. This section only
48 covers configuration details specific to this driver.
49
50 The device supports the following options:
51
52 Option "MaximumXPosition" "number"
53 Sets the maximum X position, use this to calibrate your
54 touchscreen's right hand edge.
55
56 Option "MinimumXPosition" "number"
57 Sets the minimum X position, use this to calibrate your
58 touchscreen's left hand edge.
59
60 Option "MaximumYPosition" "number"
61
62 Option "MinimumYPosition" "number"
63 Same as for X axis, but for Y axis.
64
65 Option "InvertX"
66
67 Option "InvertY"
68 Invert the specified axis.
69
70 Option "SwapXY"
71 Swap the X and Y axis.
72
73 Option "Rotate" "CW"
74 Option "Rotate" "CWW" Manipulate the invert and swap
75 options to match screen rotations.
76
77 Option "DeviceName" "name"
78 Option "DeviceName" "name" sets the name of the X device.
79
80 Option "AlwaysCore" "on"
81 enables the sharing of the core pointer. When this feature
82 is enabled, the device will take control of the core
83 pointer (and thus will emit core events) and at the same
84 time will be able, when asked so, to report extended
85 events. You can use the last available integer feedback to
86 control this feature. When the value of the feedback is
87 zero, the feature is disabled. The feature is enabled for
88 any other value.
89
90 Option "DebugLevel" number
91 sets the level of debugging info reported.
92
93 Option "BaudRate" "38400", "19200" or "9600" (default)
94 changes the serial link speed.
95
96 Option "Passive"
97 decodes the passive pen.
98
99 Example, for Stylistic LT setup is:
100 Section "InputDevice"
101 Identifier "mouse0"
102 Driver "fpit"
103 Option "Device" "/dev/ttyS3"
104 EndSection
105
106 And for other Stylistic devices try:
107 Section "InputDevice"
108 Identifier "mouse0"
109 Driver "fpit"
110 Option "Device" "/dev/ttyS3"
111 Option "BaudRate" "19200"
112 Option "MaximumXPosition" "6250"
113 Option "MaximumYPosition" "4950"
114 Option "MinimumXPosition" "130"
115 Option "MinimumYPosition" "0"
116 Option "InvertY"
117 EndSection
118
119 For Stylistic 3400:
120 Section "InputDevice"
121 Identifier "mouse0"
122 Driver "fpit"
123 Option "Device" "/dev/ttyS3"
124 Option "BaudRate" "9600"
125 Option "MaximumXPosition" "4070"
126 Option "MaximumYPosition" "4020"
127 Option "MinimumXPosition" "0"
128 Option "MinimumYPosition" "0"
129 Option "Passive"
130 Option "SendCoreEvents"
131 EndSection
132
133
135 Xorg(1x), xorg.conf(5x), xorgconfig(1x), Xserver(1x), X(7).
136
138 Original FPIT port: Rob Tsuk <rob@tsuk.com> and John Apfelbaum
139 <johnapf@linuxslate.com>
140
141 X4 Port: Richard Miller-Smith <richard.miller-smith@philips.com>, based
142 on Elographics code from: Patrick Lecoanet
143
144 X4.2 Cleanup: Alan Cox
145
146
147
148X Version 11 xf86-input-fpit 1.1.0 FPIT(4)