blob: 0807f29815b6aacd9e2b2dd2ee8eb34d36ca3ca2 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# javax.comm.properties (Linux)
#
# This properties file is necessary in order for javax.comm to run,
# and its contents are critical, and not to be tampered with without
# a very clear understanding of the impact. It is shipped with a
# default set of values that work on the target platform.
#
# 1. The directory javax.comm is launched from
# 2. Each directory in the classpath (including the one in which comm.jar is in)
# 3. <jvm dir>/lib
# 4. <jvm dir>/jre/lib
#
# The following properties must be defined:
#
# driver
# serpath0 ... serpath<n>
# parpath0 ... parpath<n>
#
#
# Driver:
#
# The driver property specifies the fully qualified class name of the
# platform specific implementation of the javax.comm.CommDriver class.
#
# Format:
#
# driver=<fully qualified classname>
#
# Example:
#
# driver=com.sun.comm.LinuxDriver
#
# Port paths:
#
# Port paths must be specified to indicate to the implementation
# which are the core set of ports to make available. These can
# be either paths to directories containing ports or paths to
# specific serial or parallel ports.
# Implementation specific driver
driver=com.sun.comm.LinuxDriver
# Paths to server-side serial port devices
serpath0 = /dev/ttyS0
serpath1 = /dev/ttyS1
# Paths to server-side parallel port devices
parpath0 = /dev/parport0
parpath1 = /dev/parport1
|