Release v2.8.0
This commit is contained in:
parent
183a984a18
commit
86c965c80c
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
16
index.html
16
index.html
|
@ -29,7 +29,7 @@
|
||||||
<section id="downloads">
|
<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="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="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-2.7.0.jar">Download this library as a .jar file</a>
|
<a class="jar_download_link" href="binaries/jSerialComm-2.8.0.jar">Download this library as a .jar file</a>
|
||||||
</section>
|
</section>
|
||||||
</header>
|
</header>
|
||||||
</div>
|
</div>
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
<li>Configurable port timeouts (blocking and non-blocking) for both reading and writing</li>
|
<li>Configurable port timeouts (blocking and non-blocking) for both reading and writing</li>
|
||||||
<li>Configurable flow control parameters for the serial port (CTS, RTS/CTS, DSR, DTR/DSR, XOn/XOff)</li>
|
<li>Configurable flow control parameters for the serial port (CTS, RTS/CTS, DSR, DTR/DSR, XOn/XOff)</li>
|
||||||
<li>Ability to read and write raw data bytes directly to the serial port</li>
|
<li>Ability to read and write raw data bytes directly to the serial port</li>
|
||||||
<li>Ability to read and write byte streams via Java's <a href="http://docs.oracle.com/javase/7/docs/api/java/io/InputStream.html" target="_blank">InputStream</a> and <a href="http://docs.oracle.com/javase/7/docs/api/java/io/OutputStream.html" target="_blank">OutputStream</a> interfaces</li>
|
<li>Ability to read and write byte streams via Java's <a href="http://docs.oracle.com/javase/9/docs/api/java/io/InputStream.html" target="_blank">InputStream</a> and <a href="http://docs.oracle.com/javase/9/docs/api/java/io/OutputStream.html" target="_blank">OutputStream</a> interfaces</li>
|
||||||
<li>Event-based reading and writing via callbacks</li>
|
<li>Event-based reading and writing via callbacks</li>
|
||||||
<li>Callback notification when:</li>
|
<li>Callback notification when:</li>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -61,21 +61,25 @@
|
||||||
<li>All data has been successfully written</li>
|
<li>All data has been successfully written</li>
|
||||||
<li>A complete fixed-length data packet has arrived</li>
|
<li>A complete fixed-length data packet has arrived</li>
|
||||||
<li>A delimited string-based message has been received</li>
|
<li>A delimited string-based message has been received</li>
|
||||||
|
<li>Modem control lines have changed state</li>
|
||||||
|
<li>Communication errors have been encountered</li>
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>Additionally, this library can be used in any Java project intended for use on the following platforms:</p>
|
<p>Additionally, this library can be used in any Java project intended for use on the following platforms:</p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>32/64-bit Windows 7 or later</li>
|
<li>Windows 7 and later (32-bit, 64-bit, and ARM)</li>
|
||||||
<li>32/64-bit Mac OS X Tiger (10.4) or later</li>
|
<li>Mac OS X Tiger (10.4) and later (32/64-bit Intel and Apple Silicon)</li>
|
||||||
<li>32/64-bit Linux distributions</li>
|
<li>All Linux distributions (32/64-bit x86, ARM, and PowerPC)</li>
|
||||||
|
<li>Solaris 10 and later (32/64-bit x86 and SPARC)</li>
|
||||||
|
<li>FreeBSD (32/64-bit x86 and ARM64)</li>
|
||||||
<li>ARM/Intel/AMD Mobile Linux derivatives (e.g. RaspberryPi, Beaglebone, etc.)</li>
|
<li>ARM/Intel/AMD Mobile Linux derivatives (e.g. RaspberryPi, Beaglebone, etc.)</li>
|
||||||
</ul>
|
</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>
|
<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-2.7.0.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-2.8.0.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>
|
<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>
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>All Classes (jSerialComm 2.7.0 API)</title>
|
<title>All Classes (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>All Classes (jSerialComm 2.7.0 API)</title>
|
<title>All Classes (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortDataListener (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortDataListener (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortDataListener (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortDataListener (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
@ -168,7 +168,7 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventListen
|
||||||
<td class="colFirst"><code>void</code></td>
|
<td class="colFirst"><code>void</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/fazecast/jSerialComm/SerialPortDataListener.html#serialEvent-com.fazecast.jSerialComm.SerialPortEvent-">serialEvent</a></span>​(<a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm">SerialPortEvent</a> event)</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/fazecast/jSerialComm/SerialPortDataListener.html#serialEvent-com.fazecast.jSerialComm.SerialPortEvent-">serialEvent</a></span>​(<a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm">SerialPortEvent</a> event)</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Called whenever one of the serial port events specified by the <a href="../../../com/fazecast/jSerialComm/SerialPortDataListener.html#getListeningEvents--"><code>getListeningEvents()</code></a> method occurs.</div>
|
<div class="block">Called whenever one or more of the serial port events specified by the <a href="../../../com/fazecast/jSerialComm/SerialPortDataListener.html#getListeningEvents--"><code>getListeningEvents()</code></a> method occurs.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
@ -200,18 +200,43 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventListen
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a><br>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a><br>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT"><code>SerialPort.LISTENING_EVENT_CARRIER_DETECT</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS"><code>SerialPort.LISTENING_EVENT_CTS</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR"><code>SerialPort.LISTENING_EVENT_DSR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR"><code>SerialPort.LISTENING_EVENT_RING_INDICATOR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR"><code>SerialPort.LISTENING_EVENT_FRAMING_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a><br>
|
||||||
<p>
|
<p>
|
||||||
Two or more events may be OR'd together to listen for multiple events; however, if <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a> is OR'd with <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a> flag will take precedence.
|
Two or more events may be OR'd together to listen for multiple events; however, if <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a> is OR'd with <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a> flag will take precedence.
|
||||||
<p>
|
<p>
|
||||||
Note that event-based <i>write</i> callbacks are only supported on Windows operating systems. As such, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>
|
Note that event-based <i>write</i> callbacks are only supported on Windows operating systems. As such, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>
|
||||||
event will never be called on a non-Windows system.</div>
|
event will never be called on a non-Windows system.
|
||||||
|
<p>
|
||||||
|
It is recommended to <b>only</b> use the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>, <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>, and/or <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a> listening events in production or cross-platform code
|
||||||
|
since underlying differences and lack of support for the control line status and error events among the various operating systems and device drivers make it
|
||||||
|
unlikely that code listening for these events will behave similarly across different serial devices or OS's, if it works at all.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
<dd>The event constants that should trigger the <a href="../../../com/fazecast/jSerialComm/SerialPortDataListener.html#serialEvent-com.fazecast.jSerialComm.SerialPortEvent-"><code>serialEvent(SerialPortEvent)</code></a> callback.</dd>
|
<dd>The event constants that should trigger the <a href="../../../com/fazecast/jSerialComm/SerialPortDataListener.html#serialEvent-com.fazecast.jSerialComm.SerialPortEvent-"><code>serialEvent(SerialPortEvent)</code></a> callback.</dd>
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>,
|
<dd><a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>,
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a></dd>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT"><code>SerialPort.LISTENING_EVENT_CARRIER_DETECT</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS"><code>SerialPort.LISTENING_EVENT_CTS</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR"><code>SerialPort.LISTENING_EVENT_DSR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR"><code>SerialPort.LISTENING_EVENT_RING_INDICATOR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR"><code>SerialPort.LISTENING_EVENT_FRAMING_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -222,12 +247,12 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventListen
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>serialEvent</h4>
|
<h4>serialEvent</h4>
|
||||||
<pre>void serialEvent​(<a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm">SerialPortEvent</a> event)</pre>
|
<pre>void serialEvent​(<a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm">SerialPortEvent</a> event)</pre>
|
||||||
<div class="block">Called whenever one of the serial port events specified by the <a href="../../../com/fazecast/jSerialComm/SerialPortDataListener.html#getListeningEvents--"><code>getListeningEvents()</code></a> method occurs.
|
<div class="block">Called whenever one or more of the serial port events specified by the <a href="../../../com/fazecast/jSerialComm/SerialPortDataListener.html#getListeningEvents--"><code>getListeningEvents()</code></a> method occurs.
|
||||||
<p>
|
<p>
|
||||||
Note that your implementation of this function should always perform as little data processing as possible, as the speed at which this callback will fire is at the mercy of the underlying operating system. If you need to collect a large amount of data, application-level buffering should be implemented and data processing should occur on a separate thread.</div>
|
Note that your implementation of this function should always perform as little data processing as possible, as the speed at which this callback will fire is at the mercy of the underlying operating system. If you need to collect a large amount of data, application-level buffering should be implemented and data processing should occur on a separate thread.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>event</code> - A <a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm"><code>SerialPortEvent</code></a> object containing information and/or data about the serial event that occurred.</dd>
|
<dd><code>event</code> - A <a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm"><code>SerialPortEvent</code></a> object containing information and/or data about the serial events that occurred.</dd>
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm"><code>SerialPortEvent</code></a></dd>
|
<dd><a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm"><code>SerialPortEvent</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortDataListenerWithExceptions (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortDataListenerWithExceptions (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortDataListenerWithExceptions (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortDataListenerWithExceptions (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortEvent (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortEvent (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortEvent (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortEvent (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
@ -140,7 +140,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</dl>
|
</dl>
|
||||||
<hr>
|
<hr>
|
||||||
<br>
|
<br>
|
||||||
<pre>public final class <span class="typeNameLabel">SerialPortEvent</span>
|
<pre>public class <span class="typeNameLabel">SerialPortEvent</span>
|
||||||
extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventObject.html?is-external=true" title="class or interface in java.util">EventObject</a></pre>
|
extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventObject.html?is-external=true" title="class or interface in java.util">EventObject</a></pre>
|
||||||
<div class="block">This class describes an asynchronous serial port event.</div>
|
<div class="block">This class describes an asynchronous serial port event.</div>
|
||||||
<dl>
|
<dl>
|
||||||
|
@ -216,7 +216,7 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventObject
|
||||||
<td class="colFirst"><code>int</code></td>
|
<td class="colFirst"><code>int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html#getEventType--">getEventType</a></span>​()</code></th>
|
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="../../../com/fazecast/jSerialComm/SerialPortEvent.html#getEventType--">getEventType</a></span>​()</code></th>
|
||||||
<td class="colLast">
|
<td class="colLast">
|
||||||
<div class="block">Returns the type of serial port event that caused this object to be created.</div>
|
<div class="block">Returns the type of serial port events that caused this object to be created.</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr id="i1" class="rowColor">
|
<tr id="i1" class="rowColor">
|
||||||
|
@ -279,9 +279,22 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventObject
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a><br>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a><br>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT"><code>SerialPort.LISTENING_EVENT_CARRIER_DETECT</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS"><code>SerialPort.LISTENING_EVENT_CTS</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR"><code>SerialPort.LISTENING_EVENT_DSR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR"><code>SerialPort.LISTENING_EVENT_RING_INDICATOR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR"><code>SerialPort.LISTENING_EVENT_FRAMING_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a><br>
|
||||||
<p>
|
<p>
|
||||||
Note that event-based write callbacks are only supported on Windows operating systems. As such, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>
|
Note that event-based write callbacks are only supported on Windows operating systems. As such, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>
|
||||||
event will never be called on a non-Windows system.</div>
|
event will never be called on a non-Windows system.
|
||||||
|
<p>
|
||||||
|
Also, most control line status and error events from <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a> to <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a>
|
||||||
|
are unlikely to function the same across different operating systems or serial devices on the same operating system, if they work properly at all.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>comPort</code> - The <a href="../../../com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm"><code>SerialPort</code></a> about which this object is being created.</dd>
|
<dd><code>comPort</code> - The <a href="../../../com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm"><code>SerialPort</code></a> about which this object is being created.</dd>
|
||||||
|
@ -289,7 +302,17 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventObject
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>,
|
<dd><a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>,
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a></dd>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT"><code>SerialPort.LISTENING_EVENT_CARRIER_DETECT</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS"><code>SerialPort.LISTENING_EVENT_CTS</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR"><code>SerialPort.LISTENING_EVENT_DSR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR"><code>SerialPort.LISTENING_EVENT_RING_INDICATOR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR"><code>SerialPort.LISTENING_EVENT_FRAMING_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -309,9 +332,22 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventObject
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a><br>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a><br>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT"><code>SerialPort.LISTENING_EVENT_CARRIER_DETECT</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS"><code>SerialPort.LISTENING_EVENT_CTS</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR"><code>SerialPort.LISTENING_EVENT_DSR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR"><code>SerialPort.LISTENING_EVENT_RING_INDICATOR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR"><code>SerialPort.LISTENING_EVENT_FRAMING_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a><br>
|
||||||
<p>
|
<p>
|
||||||
Note that event-based write callbacks are only supported on Windows operating systems. As such, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>
|
Note that event-based write callbacks are only supported on Windows operating systems. As such, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>
|
||||||
event will never be called on a non-Windows system.</div>
|
event will never be called on a non-Windows system.
|
||||||
|
<p>
|
||||||
|
Also, most control line status and error events from <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a> to <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a>
|
||||||
|
are unlikely to function the same across different operating systems or serial devices on the same operating system, if they work properly at all.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="paramLabel">Parameters:</span></dt>
|
<dt><span class="paramLabel">Parameters:</span></dt>
|
||||||
<dd><code>comPort</code> - The <a href="../../../com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm"><code>SerialPort</code></a> about which this object is being created.</dd>
|
<dd><code>comPort</code> - The <a href="../../../com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm"><code>SerialPort</code></a> about which this object is being created.</dd>
|
||||||
|
@ -320,7 +356,17 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventObject
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>,
|
<dd><a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>,
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a></dd>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT"><code>SerialPort.LISTENING_EVENT_CARRIER_DETECT</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS"><code>SerialPort.LISTENING_EVENT_CTS</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR"><code>SerialPort.LISTENING_EVENT_DSR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR"><code>SerialPort.LISTENING_EVENT_RING_INDICATOR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR"><code>SerialPort.LISTENING_EVENT_FRAMING_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -353,23 +399,46 @@ extends <a href="https://docs.oracle.com/javase/9/docs/api/java/util/EventObject
|
||||||
<li class="blockList">
|
<li class="blockList">
|
||||||
<h4>getEventType</h4>
|
<h4>getEventType</h4>
|
||||||
<pre>public final int getEventType​()</pre>
|
<pre>public final int getEventType​()</pre>
|
||||||
<div class="block">Returns the type of serial port event that caused this object to be created.
|
<div class="block">Returns the type of serial port events that caused this object to be created.
|
||||||
<p>
|
<p>
|
||||||
Return values will be one and only one of the following:
|
Return value will be a bitmask containing one or more of the following items OR'd together:
|
||||||
<p>
|
<p>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a><br>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a><br>
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a><br>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT"><code>SerialPort.LISTENING_EVENT_CARRIER_DETECT</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS"><code>SerialPort.LISTENING_EVENT_CTS</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR"><code>SerialPort.LISTENING_EVENT_DSR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR"><code>SerialPort.LISTENING_EVENT_RING_INDICATOR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR"><code>SerialPort.LISTENING_EVENT_FRAMING_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</code></a><br>
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a><br>
|
||||||
<p>
|
<p>
|
||||||
Note that event-based write callbacks are only supported on Windows operating systems. As such, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>
|
Note that event-based write callbacks are only supported on Windows operating systems. As such, the <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>
|
||||||
event will never be called on a non-Windows system.</div>
|
event will never be called on a non-Windows system.
|
||||||
|
<p>
|
||||||
|
Also, most control line status and error events from <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a> to <a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a>
|
||||||
|
are unlikely to function the same across different operating systems or serial devices on the same operating system, if they work properly at all.</div>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="returnLabel">Returns:</span></dt>
|
<dt><span class="returnLabel">Returns:</span></dt>
|
||||||
<dd>The serial port event that this object describes.</dd>
|
<dd>The serial port event that this object describes.</dd>
|
||||||
<dt><span class="seeLabel">See Also:</span></dt>
|
<dt><span class="seeLabel">See Also:</span></dt>
|
||||||
<dd><a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>,
|
<dd><a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE"><code>SerialPort.LISTENING_EVENT_DATA_AVAILABLE</code></a>,
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED"><code>SerialPort.LISTENING_EVENT_DATA_RECEIVED</code></a>,
|
||||||
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a></dd>
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN"><code>SerialPort.LISTENING_EVENT_DATA_WRITTEN</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED"><code>SerialPort.LISTENING_EVENT_PORT_DISCONNECTED</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT"><code>SerialPort.LISTENING_EVENT_BREAK_INTERRUPT</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT"><code>SerialPort.LISTENING_EVENT_CARRIER_DETECT</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS"><code>SerialPort.LISTENING_EVENT_CTS</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR"><code>SerialPort.LISTENING_EVENT_DSR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR"><code>SerialPort.LISTENING_EVENT_RING_INDICATOR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR"><code>SerialPort.LISTENING_EVENT_FRAMING_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR"><code>SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</code></a>,
|
||||||
|
<a href="../../../com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR"><code>SerialPort.LISTENING_EVENT_PARITY_ERROR</code></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortIOException (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortIOException (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortIOException (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortIOException (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortInvalidPortException (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortInvalidPortException (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortInvalidPortException (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortInvalidPortException (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortMessageListener (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortMessageListener (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortMessageListener (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortMessageListener (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortMessageListenerWithExceptions (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortMessageListenerWithExceptions (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortMessageListenerWithExceptions (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortMessageListenerWithExceptions (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortPacketListener (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortPacketListener (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortPacketListener (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortPacketListener (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>SerialPortTimeoutException (jSerialComm 2.7.0 API)</title>
|
<title>SerialPortTimeoutException (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="SerialPortTimeoutException (jSerialComm 2.7.0 API)";
|
parent.document.title="SerialPortTimeoutException (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>com.fazecast.jSerialComm (jSerialComm 2.7.0 API)</title>
|
<title>com.fazecast.jSerialComm (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>com.fazecast.jSerialComm (jSerialComm 2.7.0 API)</title>
|
<title>com.fazecast.jSerialComm (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="com.fazecast.jSerialComm (jSerialComm 2.7.0 API)";
|
parent.document.title="com.fazecast.jSerialComm (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>com.fazecast.jSerialComm Class Hierarchy (jSerialComm 2.7.0 API)</title>
|
<title>com.fazecast.jSerialComm Class Hierarchy (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="com.fazecast.jSerialComm Class Hierarchy (jSerialComm 2.7.0 API)";
|
parent.document.title="com.fazecast.jSerialComm Class Hierarchy (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>Constant Field Values (jSerialComm 2.7.0 API)</title>
|
<title>Constant Field Values (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Constant Field Values (jSerialComm 2.7.0 API)";
|
parent.document.title="Constant Field Values (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
@ -169,104 +169,181 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<td class="colLast"><code>1048576</code></td>
|
<td class="colLast"><code>1048576</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_BREAK_INTERRUPT">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT">LISTENING_EVENT_BREAK_INTERRUPT</a></code></th>
|
||||||
|
<td class="colLast"><code>65536</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_CARRIER_DETECT">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT">LISTENING_EVENT_CARRIER_DETECT</a></code></th>
|
||||||
|
<td class="colLast"><code>131072</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_CTS">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS">LISTENING_EVENT_CTS</a></code></th>
|
||||||
|
<td class="colLast"><code>262144</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_DATA_AVAILABLE">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_DATA_AVAILABLE">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE">LISTENING_EVENT_DATA_AVAILABLE</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE">LISTENING_EVENT_DATA_AVAILABLE</a></code></th>
|
||||||
<td class="colLast"><code>1</code></td>
|
<td class="colLast"><code>1</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_DATA_RECEIVED">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_DATA_RECEIVED">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED">LISTENING_EVENT_DATA_RECEIVED</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED">LISTENING_EVENT_DATA_RECEIVED</a></code></th>
|
||||||
<td class="colLast"><code>16</code></td>
|
<td class="colLast"><code>16</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_DATA_WRITTEN">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_DATA_WRITTEN">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN">LISTENING_EVENT_DATA_WRITTEN</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN">LISTENING_EVENT_DATA_WRITTEN</a></code></th>
|
||||||
<td class="colLast"><code>256</code></td>
|
<td class="colLast"><code>256</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_DSR">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR">LISTENING_EVENT_DSR</a></code></th>
|
||||||
|
<td class="colLast"><code>524288</code></td>
|
||||||
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR">LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</a></code></th>
|
||||||
|
<td class="colLast"><code>4194304</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_FRAMING_ERROR">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR">LISTENING_EVENT_FRAMING_ERROR</a></code></th>
|
||||||
|
<td class="colLast"><code>2097152</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_PARITY_ERROR">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR">LISTENING_EVENT_PARITY_ERROR</a></code></th>
|
||||||
|
<td class="colLast"><code>16777216</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_PORT_DISCONNECTED">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED">LISTENING_EVENT_PORT_DISCONNECTED</a></code></th>
|
||||||
|
<td class="colLast"><code>268435456</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_RING_INDICATOR">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR">LISTENING_EVENT_RING_INDICATOR</a></code></th>
|
||||||
|
<td class="colLast"><code>1048576</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR">LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</a></code></th>
|
||||||
|
<td class="colLast"><code>8388608</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="rowColor">
|
||||||
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.LISTENING_EVENT_TIMED_OUT">
|
||||||
|
<!-- -->
|
||||||
|
</a><code>public static final int</code></td>
|
||||||
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_TIMED_OUT">LISTENING_EVENT_TIMED_OUT</a></code></th>
|
||||||
|
<td class="colLast"><code>0</code></td>
|
||||||
|
</tr>
|
||||||
|
<tr class="altColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.MARK_PARITY">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.MARK_PARITY">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#MARK_PARITY">MARK_PARITY</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#MARK_PARITY">MARK_PARITY</a></code></th>
|
||||||
<td class="colLast"><code>3</code></td>
|
<td class="colLast"><code>3</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.NO_PARITY">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.NO_PARITY">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#NO_PARITY">NO_PARITY</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#NO_PARITY">NO_PARITY</a></code></th>
|
||||||
<td class="colLast"><code>0</code></td>
|
<td class="colLast"><code>0</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.ODD_PARITY">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.ODD_PARITY">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#ODD_PARITY">ODD_PARITY</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#ODD_PARITY">ODD_PARITY</a></code></th>
|
||||||
<td class="colLast"><code>1</code></td>
|
<td class="colLast"><code>1</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.ONE_POINT_FIVE_STOP_BITS">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.ONE_POINT_FIVE_STOP_BITS">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#ONE_POINT_FIVE_STOP_BITS">ONE_POINT_FIVE_STOP_BITS</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#ONE_POINT_FIVE_STOP_BITS">ONE_POINT_FIVE_STOP_BITS</a></code></th>
|
||||||
<td class="colLast"><code>2</code></td>
|
<td class="colLast"><code>2</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.ONE_STOP_BIT">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.ONE_STOP_BIT">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#ONE_STOP_BIT">ONE_STOP_BIT</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#ONE_STOP_BIT">ONE_STOP_BIT</a></code></th>
|
||||||
<td class="colLast"><code>1</code></td>
|
<td class="colLast"><code>1</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.SPACE_PARITY">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.SPACE_PARITY">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#SPACE_PARITY">SPACE_PARITY</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#SPACE_PARITY">SPACE_PARITY</a></code></th>
|
||||||
<td class="colLast"><code>4</code></td>
|
<td class="colLast"><code>4</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_NONBLOCKING">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_NONBLOCKING">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_NONBLOCKING">TIMEOUT_NONBLOCKING</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_NONBLOCKING">TIMEOUT_NONBLOCKING</a></code></th>
|
||||||
<td class="colLast"><code>0</code></td>
|
<td class="colLast"><code>0</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_READ_BLOCKING">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_READ_BLOCKING">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_BLOCKING">TIMEOUT_READ_BLOCKING</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_BLOCKING">TIMEOUT_READ_BLOCKING</a></code></th>
|
||||||
<td class="colLast"><code>16</code></td>
|
<td class="colLast"><code>16</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_READ_SEMI_BLOCKING">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_READ_SEMI_BLOCKING">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_SEMI_BLOCKING">TIMEOUT_READ_SEMI_BLOCKING</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_READ_SEMI_BLOCKING">TIMEOUT_READ_SEMI_BLOCKING</a></code></th>
|
||||||
<td class="colLast"><code>1</code></td>
|
<td class="colLast"><code>1</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_SCANNER">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_SCANNER">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_SCANNER">TIMEOUT_SCANNER</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_SCANNER">TIMEOUT_SCANNER</a></code></th>
|
||||||
<td class="colLast"><code>4096</code></td>
|
<td class="colLast"><code>4096</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="rowColor">
|
<tr class="altColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_WRITE_BLOCKING">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TIMEOUT_WRITE_BLOCKING">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_WRITE_BLOCKING">TIMEOUT_WRITE_BLOCKING</a></code></th>
|
<th class="colSecond" scope="row"><code><a href="com/fazecast/jSerialComm/SerialPort.html#TIMEOUT_WRITE_BLOCKING">TIMEOUT_WRITE_BLOCKING</a></code></th>
|
||||||
<td class="colLast"><code>256</code></td>
|
<td class="colLast"><code>256</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="altColor">
|
<tr class="rowColor">
|
||||||
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TWO_STOP_BITS">
|
<td class="colFirst"><a name="com.fazecast.jSerialComm.SerialPort.TWO_STOP_BITS">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
</a><code>public static final int</code></td>
|
</a><code>public static final int</code></td>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>Deprecated List (jSerialComm 2.7.0 API)</title>
|
<title>Deprecated List (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Deprecated List (jSerialComm 2.7.0 API)";
|
parent.document.title="Deprecated List (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>API Help (jSerialComm 2.7.0 API)</title>
|
<title>API Help (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="API Help (jSerialComm 2.7.0 API)";
|
parent.document.title="API Help (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>Index (jSerialComm 2.7.0 API)</title>
|
<title>Index (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Index (jSerialComm 2.7.0 API)";
|
parent.document.title="Index (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
@ -157,6 +157,10 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Must be overridden to return whether the message delimiter indicates the end or the beginning of a message.</div>
|
<div class="block">Must be overridden to return whether the message delimiter indicates the end or the beginning of a message.</div>
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#disableExclusiveLock--">disableExclusiveLock()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Disables the library from obtaining an exclusive lock on the serial port.</div>
|
||||||
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#disablePortConfiguration--">disablePortConfiguration()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#disablePortConfiguration--">disablePortConfiguration()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Disables the library from calling any of the underlying device driver configuration methods.</div>
|
<div class="block">Disables the library from calling any of the underlying device driver configuration methods.</div>
|
||||||
|
@ -189,6 +193,10 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#FLOW_CONTROL_XONXOFF_OUT_ENABLED">FLOW_CONTROL_XONXOFF_OUT_ENABLED</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#FLOW_CONTROL_XONXOFF_OUT_ENABLED">FLOW_CONTROL_XONXOFF_OUT_ENABLED</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#flushIOBuffers--">flushIOBuffers()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Flushes the serial port's Rx/Tx device buffers.</div>
|
||||||
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<a name="I:G">
|
<a name="I:G">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
|
@ -237,7 +245,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</dd>
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPortEvent.html#getEventType--">getEventType()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm">SerialPortEvent</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPortEvent.html#getEventType--">getEventType()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPortEvent.html" title="class in com.fazecast.jSerialComm">SerialPortEvent</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Returns the type of serial port event that caused this object to be created.</div>
|
<div class="block">Returns the type of serial port events that caused this object to be created.</div>
|
||||||
</dd>
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getFlowControlSettings--">getFlowControlSettings()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getFlowControlSettings--">getFlowControlSettings()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
|
@ -252,6 +260,15 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<div class="block">Returns an <a href="https://docs.oracle.com/javase/9/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io"><code>InputStream</code></a> object associated with this serial port, with read timeout exceptions
|
<div class="block">Returns an <a href="https://docs.oracle.com/javase/9/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io"><code>InputStream</code></a> object associated with this serial port, with read timeout exceptions
|
||||||
completely suppressed.</div>
|
completely suppressed.</div>
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getLastErrorCode--">getLastErrorCode()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Returns the error number returned by the most recent native source code line that failed execution.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getLastErrorLocation--">getLastErrorLocation()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Returns the source code line location of the latest error encountered during execution of
|
||||||
|
the native code for this port.</div>
|
||||||
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPortDataListener.html#getListeningEvents--">getListeningEvents()</a></span> - Method in interface com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPortDataListener.html" title="interface in com.fazecast.jSerialComm">SerialPortDataListener</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPortDataListener.html#getListeningEvents--">getListeningEvents()</a></span> - Method in interface com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPortDataListener.html" title="interface in com.fazecast.jSerialComm">SerialPortDataListener</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Must be overridden to return one or more desired event constants for which the <a href="com/fazecast/jSerialComm/SerialPortDataListener.html#serialEvent-com.fazecast.jSerialComm.SerialPortEvent-"><code>SerialPortDataListener.serialEvent(SerialPortEvent)</code></a> callback should be triggered.</div>
|
<div class="block">Must be overridden to return one or more desired event constants for which the <a href="com/fazecast/jSerialComm/SerialPortDataListener.html#serialEvent-com.fazecast.jSerialComm.SerialPortEvent-"><code>SerialPortDataListener.serialEvent(SerialPortEvent)</code></a> callback should be triggered.</div>
|
||||||
|
@ -284,6 +301,10 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Gets a description of the port as reported by the device itself.</div>
|
<div class="block">Gets a description of the port as reported by the device itself.</div>
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getPortLocation--">getPortLocation()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Gets the physical location of the port as a String in the form "BUS-[HUB1.HUB2.etc]PORT_NUMBER".</div>
|
||||||
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getReadTimeout--">getReadTimeout()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getReadTimeout--">getReadTimeout()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Gets the number of milliseconds of inactivity to tolerate before returning from a <a href="com/fazecast/jSerialComm/SerialPort.html#readBytes-byte:A-long-"><code>SerialPort.readBytes(byte[],long)</code></a> call.</div>
|
<div class="block">Gets the number of milliseconds of inactivity to tolerate before returning from a <a href="com/fazecast/jSerialComm/SerialPort.html#readBytes-byte:A-long-"><code>SerialPort.readBytes(byte[],long)</code></a> call.</div>
|
||||||
|
@ -308,6 +329,10 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Gets the operating system-defined device name corresponding to this serial port.</div>
|
<div class="block">Gets the operating system-defined device name corresponding to this serial port.</div>
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getSystemPortPath--">getSystemPortPath()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Gets the operating system-defined device path corresponding to this serial port.</div>
|
||||||
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getVersion--">getVersion()</a></span> - Static method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#getVersion--">getVersion()</a></span> - Static method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Returns the current version of the jSerialComm library.</div>
|
<div class="block">Returns the current version of the jSerialComm library.</div>
|
||||||
|
@ -332,12 +357,34 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
</a>
|
</a>
|
||||||
<h2 class="title">L</h2>
|
<h2 class="title">L</h2>
|
||||||
<dl>
|
<dl>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_BREAK_INTERRUPT">LISTENING_EVENT_BREAK_INTERRUPT</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CARRIER_DETECT">LISTENING_EVENT_CARRIER_DETECT</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_CTS">LISTENING_EVENT_CTS</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE">LISTENING_EVENT_DATA_AVAILABLE</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_AVAILABLE">LISTENING_EVENT_DATA_AVAILABLE</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED">LISTENING_EVENT_DATA_RECEIVED</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_RECEIVED">LISTENING_EVENT_DATA_RECEIVED</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN">LISTENING_EVENT_DATA_WRITTEN</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DATA_WRITTEN">LISTENING_EVENT_DATA_WRITTEN</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_DSR">LISTENING_EVENT_DSR</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR">LISTENING_EVENT_FIRMWARE_OVERRUN_ERROR</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_FRAMING_ERROR">LISTENING_EVENT_FRAMING_ERROR</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PARITY_ERROR">LISTENING_EVENT_PARITY_ERROR</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_PORT_DISCONNECTED">LISTENING_EVENT_PORT_DISCONNECTED</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_RING_INDICATOR">LISTENING_EVENT_RING_INDICATOR</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR">LISTENING_EVENT_SOFTWARE_OVERRUN_ERROR</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#LISTENING_EVENT_TIMED_OUT">LISTENING_EVENT_TIMED_OUT</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
</dl>
|
</dl>
|
||||||
<a name="I:M">
|
<a name="I:M">
|
||||||
<!-- -->
|
<!-- -->
|
||||||
|
@ -404,7 +451,7 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<dl>
|
<dl>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPortDataListener.html#serialEvent-com.fazecast.jSerialComm.SerialPortEvent-">serialEvent(SerialPortEvent)</a></span> - Method in interface com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPortDataListener.html" title="interface in com.fazecast.jSerialComm">SerialPortDataListener</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPortDataListener.html#serialEvent-com.fazecast.jSerialComm.SerialPortEvent-">serialEvent(SerialPortEvent)</a></span> - Method in interface com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPortDataListener.html" title="interface in com.fazecast.jSerialComm">SerialPortDataListener</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Called whenever one of the serial port events specified by the <a href="com/fazecast/jSerialComm/SerialPortDataListener.html#getListeningEvents--"><code>SerialPortDataListener.getListeningEvents()</code></a> method occurs.</div>
|
<div class="block">Called whenever one or more of the serial port events specified by the <a href="com/fazecast/jSerialComm/SerialPortDataListener.html#getListeningEvents--"><code>SerialPortDataListener.getListeningEvents()</code></a> method occurs.</div>
|
||||||
</dd>
|
</dd>
|
||||||
<dt><a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm"><span class="typeNameLink">SerialPort</span></a> - Class in <a href="com/fazecast/jSerialComm/package-summary.html">com.fazecast.jSerialComm</a></dt>
|
<dt><a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm"><span class="typeNameLink">SerialPort</span></a> - Class in <a href="com/fazecast/jSerialComm/package-summary.html">com.fazecast.jSerialComm</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
|
@ -536,14 +583,22 @@ $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Sets the desired parity error-detection scheme to be used.</div>
|
<div class="block">Sets the desired parity error-detection scheme to be used.</div>
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#setRs485ModeParameters-boolean-boolean-boolean-boolean-int-int-">setRs485ModeParameters(boolean, boolean, boolean, boolean, int, int)</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Sets RS-485 mode and its parameters for the device.</div>
|
||||||
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#setRs485ModeParameters-boolean-boolean-int-int-">setRs485ModeParameters(boolean, boolean, int, int)</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#setRs485ModeParameters-boolean-boolean-int-int-">setRs485ModeParameters(boolean, boolean, int, int)</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Sets whether to enable RS-485 mode for this device.</div>
|
<div class="block">Sets RS-485 mode and its parameters for the device.</div>
|
||||||
</dd>
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#setRTS--">setRTS()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#setRTS--">setRTS()</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="block">Sets the state of the RTS line to 1.</div>
|
<div class="block">Sets the state of the RTS line to 1.</div>
|
||||||
</dd>
|
</dd>
|
||||||
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#setXonXoffCharacters-byte-byte-">setXonXoffCharacters(byte, byte)</a></span> - Method in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Sets custom XON/XOFF flow control characters for the device.</div>
|
||||||
|
</dd>
|
||||||
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#SPACE_PARITY">SPACE_PARITY</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
<dt><span class="memberNameLink"><a href="com/fazecast/jSerialComm/SerialPort.html#SPACE_PARITY">SPACE_PARITY</a></span> - Static variable in class com.fazecast.jSerialComm.<a href="com/fazecast/jSerialComm/SerialPort.html" title="class in com.fazecast.jSerialComm">SerialPort</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>jSerialComm 2.7.0 API</title>
|
<title>jSerialComm 2.8.0 API</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>Class Hierarchy (jSerialComm 2.7.0 API)</title>
|
<title>Class Hierarchy (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Class Hierarchy (jSerialComm 2.7.0 API)";
|
parent.document.title="Class Hierarchy (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
Binary file not shown.
|
@ -3,7 +3,7 @@
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc -->
|
<!-- Generated by javadoc -->
|
||||||
<title>Serialized Form (jSerialComm 2.7.0 API)</title>
|
<title>Serialized Form (jSerialComm 2.8.0 API)</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" title="Style">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<script type="text/javascript"><!--
|
<script type="text/javascript"><!--
|
||||||
try {
|
try {
|
||||||
if (location.href.indexOf('is-external=true') == -1) {
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
parent.document.title="Serialized Form (jSerialComm 2.7.0 API)";
|
parent.document.title="Serialized Form (jSerialComm 2.8.0 API)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(err) {
|
catch(err) {
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue