Updated to version 1.3.9.
This commit is contained in:
parent
12fd22c1de
commit
a6fdd9ab56
Binary file not shown.
68
index.html
68
index.html
|
@ -5,7 +5,7 @@
|
|||
<meta charset='utf-8'>
|
||||
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
||||
<meta name="description" content="jSerialComm : Platform-independent serial port access for Java">
|
||||
|
||||
|
||||
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
|
||||
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
|
||||
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
|
||||
|
@ -29,7 +29,7 @@
|
|||
<section id="downloads">
|
||||
<a class="zip_download_link" href="https://github.com/Fazecast/jSerialComm/zipball/master">Download this project as a .zip file</a>
|
||||
<a class="tar_download_link" href="https://github.com/Fazecast/jSerialComm/tarball/master">Download this project as a tar.gz file</a>
|
||||
<a class="jar_download_link" href="binaries/jSerialComm-1.3.7.jar">Download this library as a .jar file</a>
|
||||
<a class="jar_download_link" href="binaries/jSerialComm-1.3.9.jar">Download this library as a .jar file</a>
|
||||
</section>
|
||||
</header>
|
||||
</div>
|
||||
|
@ -38,11 +38,11 @@
|
|||
<div id="main_content_wrap" class="outer">
|
||||
<section id="main_content" class="inner">
|
||||
<h3><a class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>What is jSerialComm?</h3>
|
||||
|
||||
|
||||
<p>jSerialComm is a Java library designed to provide a platform-independent way to access standard serial ports without requiring external libraries, native code, or any other tools. It is meant as an alternative to RxTx and the (deprecated) Java Communications API, with increased ease-of-use, an enhanced support for timeouts, and the ability to open multiple ports simultaneously.</p>
|
||||
|
||||
|
||||
<p>Some of the features of this library include:</p>
|
||||
|
||||
|
||||
<ul>
|
||||
<li>Platform-independent library deployment (automatically uses correct native library based on current architecture)</li>
|
||||
<li>Very lightweight and efficient implementation</li>
|
||||
|
@ -61,36 +61,36 @@
|
|||
<li>A complete fixed-length data packet has arrived</li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
|
||||
<p>Additionally, this library can be used in any Java project intended for use on the following platforms:</p>
|
||||
|
||||
|
||||
<ul>
|
||||
<li>32/64-bit Windows XP or later</li>
|
||||
<li>32/64-bit Mac OS X Tiger (10.4) or later</li>
|
||||
<li>32/64-bit Linux distributions</li>
|
||||
<li>ARM/Intel/AMD Mobile Linux derivatives (e.g. Android, RaspberryPi, Beaglebone, etc.)</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<h3><a class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>How can use this library in my own project?</h3>
|
||||
|
||||
<p>One of the most convenient features of this library is that it allows you to simply include the <a href="binaries/jSerialComm-1.3.7.jar">JAR file</a> in your custom project, and it will automatically select and load the correct native library for your platform and architecture. As such, you can make use of this library by simply copying the jSerialComm.jar file into your project directory and linking to it as you would any other JAR file.</p>
|
||||
|
||||
|
||||
<p>One of the most convenient features of this library is that it allows you to simply include the <a href="binaries/jSerialComm-1.3.9.jar">JAR file</a> in your custom project, and it will automatically select and load the correct native library for your platform and architecture. As such, you can make use of this library by simply copying the jSerialComm.jar file into your project directory and linking to it as you would any other JAR file.</p>
|
||||
|
||||
<p>To access the contents of the library in your project, make sure to <code>import com.fazecast.jSerialComm.*</code> into your java files. You can then generate a list of all available serial ports on your system (real or virtual), by calling the following static method:</p>
|
||||
|
||||
|
||||
<pre><code>SerialPort.getCommPorts()</code></pre>
|
||||
|
||||
|
||||
<p>This will return an array of SerialPort objects through which you can iterate. See the <a href="javadoc/index.html" target="_blank">Javadoc Library Reference</a> for a complete overview of this library and its methods. Alternately, if you already know the port descriptor of the port you wish to use (e.g., "/dev/ttyS0" or "COM3"), or if you are using this library with pseudo-terminals (e.g., "/dev/pts/14"), you can create a SerialPort object using the following static method:</p>
|
||||
|
||||
|
||||
<pre><code>SerialPort.getCommPort(String portDescriptor)</code></pre>
|
||||
|
||||
|
||||
<p><i>Note for Linux users</i>: Serial port access is limited to certain users and groups in Linux. To enable user access, you must open a terminal and enter the following commands before jSerialComm will be able to access the ports on your system. Don't worry if some of the commands fail. All of these groups may not exist on every Linux distro. (Note, this process must only be done once for each user):</p>
|
||||
|
||||
|
||||
<pre><code>sudo usermod -a -G uucp username<br />sudo usermod -a -G dialout username<br />sudo usermod -a -G lock username<br />sudo usermod -a -G tty username</code></pre>
|
||||
|
||||
|
||||
<p>Replace the username parameter with your current username. (If you are not sure what your username is, type <code>whoami</code> and it will tell you.) If you are using SUSE 11.3 or higher, replace the '-a -G' flags with a single '-A' flag. Log out and you should have access to the serial port after logging back in.</p>
|
||||
|
||||
|
||||
<p>Additionally, if you are using an automated build system (such as Maven), you can import this library directly into your project as a dependency from the Maven Central Repository instead of copying the .jar file manually. Use one of the following dependency declarations depending on the build system you are using:</p>
|
||||
|
||||
|
||||
<div id="tabs-nohdr" class="tabs">
|
||||
<ul>
|
||||
<li><a href="#tabs-1">Maven</a></li>
|
||||
|
@ -102,42 +102,42 @@
|
|||
<li><a href="#tabs-7">Leiningen</a></li>
|
||||
</ul>
|
||||
<div id="tabs-1">
|
||||
<pre><code><dependency><br /> <groupId>com.fazecast</groupId><br /> <artifactId>jSerialComm</artifactId><br /> <version>1.3.7</version><br /></dependency></code></pre>
|
||||
<pre><code><dependency><br /> <groupId>com.fazecast</groupId><br /> <artifactId>jSerialComm</artifactId><br /> <version>1.3.9</version><br /></dependency></code></pre>
|
||||
</div>
|
||||
<div id="tabs-2">
|
||||
<pre><code><dependency org="com.fazecast" name="jSerialComm" rev="1.3.7"/></code></pre>
|
||||
<pre><code><dependency org="com.fazecast" name="jSerialComm" rev="1.3.9"/></code></pre>
|
||||
</div>
|
||||
<div id="tabs-3">
|
||||
<pre><code>@Grab(group='com.fazecast', module='jSerialComm', version='1.3.7')</code></pre>
|
||||
<pre><code>@Grab(group='com.fazecast', module='jSerialComm', version='1.3.9')</code></pre>
|
||||
</div>
|
||||
<div id="tabs-4">
|
||||
<pre><code>compile 'com.fazecast:jSerialComm:1.3.7'</code></pre>
|
||||
<pre><code>compile 'com.fazecast:jSerialComm:1.3.9'</code></pre>
|
||||
</div>
|
||||
<div id="tabs-5">
|
||||
<pre><code>compile.with 'com.fazecast:jSerialComm:jar:1.3.7'</code></pre>
|
||||
<pre><code>compile.with 'com.fazecast:jSerialComm:jar:1.3.9'</code></pre>
|
||||
</div>
|
||||
<div id="tabs-6">
|
||||
<pre><code>libraryDependencies += "com.fazecast" % "jSerialComm" % "1.3.7"</code></pre>
|
||||
<pre><code>libraryDependencies += "com.fazecast" % "jSerialComm" % "1.3.9"</code></pre>
|
||||
</div>
|
||||
<div id="tabs-7">
|
||||
<pre><code>[com.fazecast/jSerialComm "1.3.7"]</code></pre>
|
||||
<pre><code>[com.fazecast/jSerialComm "1.3.9"]</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<h3><a class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>Are there any usage examples?</h3>
|
||||
|
||||
|
||||
<p>Although this library was designed to be as simple and flexible as possible, you can enable a number of different modes of operation via manipulation of the serial port timeout values and the interface through which you choose to access the serial port.</p>
|
||||
|
||||
|
||||
<p>For a description of the various modes of operation available in this library, please refer to the <a href="https://github.com/Fazecast/jSerialComm/wiki/Modes-of-Operation" target="_blank">Modes of Operation</a> wiki article. For code-based examples of how to use this library in your own project, we provide a <a href="https://github.com/Fazecast/jSerialComm/wiki/Usage-Examples" target="_blank">Usage Examples</a> wiki.</p>
|
||||
|
||||
|
||||
<p>Finally, you can view the <a href="javadoc/index.html" target="_blank">API Documentation</a> for further information on how to use this library.</p>
|
||||
|
||||
|
||||
<h3><a class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>Authors and Contributors</h3>
|
||||
|
||||
|
||||
<p>This library was created and developed by Will Hedgecock (<a href="https://github.com/hedgecrw" class="user-mention">@willhedgecock</a>) of Fazecast, Inc. (<a href="https://github.com/fazecast" class="user-mention">@fazecast</a>)</p>
|
||||
|
||||
|
||||
<h3><a class="anchor" ria-hidden="true"><span class="octicon octicon-link"></span></a>Support or Contact</h3>
|
||||
|
||||
|
||||
<p>Having trouble with this library? Check out the <a href="javadoc/index.html" target="_blank">documentation</a> or open an <a href="https://github.com/Fazecast/jSerialComm/issues" target="_blank">issue report</a> and we’ll help you sort it out.</p>
|
||||
|
||||
</section>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>All Classes (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>All Classes (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>All Classes (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>All Classes (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>SerialPort (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>SerialPort (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="SerialPort (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="SerialPort (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
@ -877,7 +877,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
|
|||
The length of the byte buffer must be greater than or equal to the value passed in for <i>bytesToRead</i>
|
||||
<p>
|
||||
If no timeouts were specified or the read timeout was set to 0, this call will block until <i>bytesToRead</i> bytes of data have been successfully read from the serial port.
|
||||
Otherwise, this method will return after <i>bytesToRead</i> bytes of data have been read or the number of milliseconds specified by the read timeout have elapsed,
|
||||
Otherwise, this method will return after <i>bytesToRead</i> bytes of data have been read or the number of milliseconds specified by the read timeout have elapsed,
|
||||
whichever comes first, regardless of the availability of more data.</div>
|
||||
<dl>
|
||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||
|
@ -901,7 +901,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
|
|||
The length of the byte buffer must be greater than or equal to the value passed in for <i>bytesToWrite</i>
|
||||
<p>
|
||||
If no timeouts were specified or the write timeout was set to 0, this call will block until <i>bytesToWrite</i> bytes of data have been successfully written the serial port.
|
||||
Otherwise, this method will return after <i>bytesToWrite</i> bytes of data have been written or the number of milliseconds specified by the write timeout have elapsed,
|
||||
Otherwise, this method will return after <i>bytesToWrite</i> bytes of data have been written or the number of milliseconds specified by the write timeout have elapsed,
|
||||
whichever comes first, regardless of the availability of more data.</div>
|
||||
<dl>
|
||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||
|
@ -1043,7 +1043,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
|
|||
<p>
|
||||
<i>Note that write timeouts are only available on Windows-based systems. There is no functionality to set a write timeout on other operating systems.</i>
|
||||
<p>
|
||||
The built-in timeout mode constants should be used (<a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_NONBLOCKING"><code>TIMEOUT_NONBLOCKING</code></a>, <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_SEMI_BLOCKING"><code>TIMEOUT_READ_SEMI_BLOCKING</code></a>,
|
||||
The built-in timeout mode constants should be used (<a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_NONBLOCKING"><code>TIMEOUT_NONBLOCKING</code></a>, <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_SEMI_BLOCKING"><code>TIMEOUT_READ_SEMI_BLOCKING</code></a>,
|
||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_WRITE_SEMI_BLOCKING"><code>TIMEOUT_WRITE_SEMI_BLOCKING</code></a>, <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_BLOCKING"><code>TIMEOUT_READ_BLOCKING</code></a>, <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_WRITE_BLOCKING"><code>TIMEOUT_WRITE_BLOCKING</code></a>, <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_SCANNER"><code>TIMEOUT_SCANNER</code></a>) to specify how
|
||||
timeouts are to be handled.
|
||||
<p>
|
||||
|
@ -1061,20 +1061,20 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
|
|||
The <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_NONBLOCKING"><code>TIMEOUT_NONBLOCKING</code></a> mode specifies that the corresponding <a href="../../../com/fazecast/jSerialComm/SerialPort.html#readBytes-byte:A-long-"><code>readBytes(byte[],long)</code></a> or <a href="../../../com/fazecast/jSerialComm/SerialPort.html#writeBytes-byte:A-long-"><code>writeBytes(byte[],long)</code></a> call
|
||||
will return immediately with any available data.
|
||||
<p>
|
||||
The <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_SEMI_BLOCKING"><code>TIMEOUT_READ_SEMI_BLOCKING</code></a> or <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_WRITE_SEMI_BLOCKING"><code>TIMEOUT_WRITE_SEMI_BLOCKING</code></a> modes specify that the corresponding calls will block until either
|
||||
The <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_SEMI_BLOCKING"><code>TIMEOUT_READ_SEMI_BLOCKING</code></a> or <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_WRITE_SEMI_BLOCKING"><code>TIMEOUT_WRITE_SEMI_BLOCKING</code></a> modes specify that the corresponding calls will block until either
|
||||
<i>newReadTimeout</i> or <i>newWriteTimeout</i> milliseconds of inactivity have elapsed or at least 1 byte of data can be written or read.
|
||||
<p>
|
||||
The <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_BLOCKING"><code>TIMEOUT_READ_BLOCKING</code></a> or <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_WRITE_BLOCKING"><code>TIMEOUT_WRITE_BLOCKING</code></a> modes specify that the corresponding call will block until either
|
||||
<i>newReadTimeout</i> or <i>newWriteTimeout</i> milliseconds have elapsed since the start of the call or the total number of requested bytes can be written or
|
||||
<i>newReadTimeout</i> or <i>newWriteTimeout</i> milliseconds have elapsed since the start of the call or the total number of requested bytes can be written or
|
||||
returned.
|
||||
<p>
|
||||
The <a href="../../../com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_SCANNER"><code>TIMEOUT_SCANNER</code></a> mode is intended for use with the Java <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Scanner.html?is-external=true" title="class or interface in java.util"><code>Scanner</code></a> class for reading from the serial port. In this mode,
|
||||
manually specified timeouts are ignored to ensure compatibility with the Java specification.
|
||||
<p>
|
||||
A value of 0 for either <i>newReadTimeout</i> or <i>newWriteTimeout</i> indicates that a <a href="../../../com/fazecast/jSerialComm/SerialPort.html#readBytes-byte:A-long-"><code>readBytes(byte[],long)</code></a> or
|
||||
A value of 0 for either <i>newReadTimeout</i> or <i>newWriteTimeout</i> indicates that a <a href="../../../com/fazecast/jSerialComm/SerialPort.html#readBytes-byte:A-long-"><code>readBytes(byte[],long)</code></a> or
|
||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#writeBytes-byte:A-long-"><code>writeBytes(byte[],long)</code></a> call should block forever until it can return successfully (based upon the current timeout mode specified).
|
||||
<p>
|
||||
It is important to note that non-Windows operating systems only allow decisecond (1/10th of a second) granularity for serial port timeouts. As such, your
|
||||
It is important to note that non-Windows operating systems only allow decisecond (1/10th of a second) granularity for serial port timeouts. As such, your
|
||||
millisecond timeout value will be rounded to the nearest decisecond under Linux or Mac OS. To ensure consistent performance across multiple platforms, it is
|
||||
advisable that you set your timeout values to be multiples of 100, although this is not strictly enforced.</div>
|
||||
<dl>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>SerialPortDataListener (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>SerialPortDataListener (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="SerialPortDataListener (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="SerialPortDataListener (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>SerialPortEvent (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>SerialPortEvent (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="SerialPortEvent (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="SerialPortEvent (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>SerialPortPacketListener (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>SerialPortPacketListener (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="SerialPortPacketListener (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="SerialPortPacketListener (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>com.fazecast.jSerialComm (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>com.fazecast.jSerialComm (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../script.js"></script>
|
||||
</head>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>com.fazecast.jSerialComm (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>com.fazecast.jSerialComm (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="com.fazecast.jSerialComm (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="com.fazecast.jSerialComm (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>com.fazecast.jSerialComm Class Hierarchy (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>com.fazecast.jSerialComm Class Hierarchy (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="../../../script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="com.fazecast.jSerialComm Class Hierarchy (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="com.fazecast.jSerialComm Class Hierarchy (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>Constant Field Values (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>Constant Field Values (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Constant Field Values (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="Constant Field Values (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>Deprecated List (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>Deprecated List (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Deprecated List (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="Deprecated List (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>API Help (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>API Help (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="API Help (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="API Help (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>Index (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>Index (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Index (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="Index (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>jSerialComm 1.3.7 API</title>
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>jSerialComm 1.3.9 API</title>
|
||||
<script type="text/javascript">
|
||||
targetPage = "" + window.location.search;
|
||||
if (targetPage != "" && targetPage != "undefined")
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>Class Hierarchy (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>Class Hierarchy (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Class Hierarchy (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="Class Hierarchy (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!-- NewPage -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Generated by javadoc (1.8.0_20) on Thu Jul 02 11:38:07 CDT 2015 -->
|
||||
<title>Serialized Form (jSerialComm 1.3.7 API)</title>
|
||||
<meta name="date" content="2015-07-02">
|
||||
<!-- Generated by javadoc (1.8.0_51) on Wed Oct 28 10:24:25 CDT 2015 -->
|
||||
<title>Serialized Form (jSerialComm 1.3.9 API)</title>
|
||||
<meta name="date" content="2015-10-28">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
<script type="text/javascript" src="script.js"></script>
|
||||
</head>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript"><!--
|
||||
try {
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="Serialized Form (jSerialComm 1.3.7 API)";
|
||||
parent.document.title="Serialized Form (jSerialComm 1.3.9 API)";
|
||||
}
|
||||
}
|
||||
catch(err) {
|
||||
|
|
Loading…
Reference in New Issue