Updated to version 1.3.11
This commit is contained in:
parent
268eb8bd6e
commit
dcb03a74c1
Binary file not shown.
Binary file not shown.
19
index.html
19
index.html
|
@ -29,7 +29,7 @@
|
|||
<section id="downloads">
|
||||
<a class="zip_download_link" href="https://github.com/Fazecast/jSerialComm/zipball/master">Download this project as a .zip file</a>
|
||||
<a class="tar_download_link" href="https://github.com/Fazecast/jSerialComm/tarball/master">Download this project as a tar.gz file</a>
|
||||
<a class="jar_download_link" href="binaries/jSerialComm-1.3.10.jar">Download this library as a .jar file</a>
|
||||
<a class="jar_download_link" href="binaries/jSerialComm-1.3.11.jar">Download this library as a .jar file</a>
|
||||
</section>
|
||||
</header>
|
||||
</div>
|
||||
|
@ -48,6 +48,7 @@
|
|||
<li>Very lightweight and efficient implementation</li>
|
||||
<li>Enumerates all available serial ports on a machine</li>
|
||||
<li>Returns both a system port description and a friendly device description</li>
|
||||
<li>User-specifiable port descriptors including symbolic links</li>
|
||||
<li>Configurable ports according to baud rate, data bits, stop bits, and parity</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>
|
||||
|
@ -73,7 +74,7 @@
|
|||
|
||||
<h3><a class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>How can use this library in my own project?</h3>
|
||||
|
||||
<p>One of the most convenient features of this library is that it allows you to simply include the <a href="binaries/jSerialComm-1.3.10.jar">JAR file</a> in your custom project, and it will automatically select and load the correct native library for your platform and architecture. As such, you can make use of this library by simply copying the jSerialComm.jar file into your project directory and linking to it as you would any other JAR file.</p>
|
||||
<p>One of the most convenient features of this library is that it allows you to simply include the <a href="binaries/jSerialComm-1.3.11.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>
|
||||
|
||||
|
@ -102,25 +103,25 @@
|
|||
<li><a href="#tabs-7">Leiningen</a></li>
|
||||
</ul>
|
||||
<div id="tabs-1">
|
||||
<pre><code><dependency><br /> <groupId>com.fazecast</groupId><br /> <artifactId>jSerialComm</artifactId><br /> <version>1.3.10</version><br /></dependency></code></pre>
|
||||
<pre><code><dependency><br /> <groupId>com.fazecast</groupId><br /> <artifactId>jSerialComm</artifactId><br /> <version>1.3.11</version><br /></dependency></code></pre>
|
||||
</div>
|
||||
<div id="tabs-2">
|
||||
<pre><code><dependency org="com.fazecast" name="jSerialComm" rev="1.3.10"/></code></pre>
|
||||
<pre><code><dependency org="com.fazecast" name="jSerialComm" rev="1.3.11"/></code></pre>
|
||||
</div>
|
||||
<div id="tabs-3">
|
||||
<pre><code>@Grab(group='com.fazecast', module='jSerialComm', version='1.3.10')</code></pre>
|
||||
<pre><code>@Grab(group='com.fazecast', module='jSerialComm', version='1.3.11')</code></pre>
|
||||
</div>
|
||||
<div id="tabs-4">
|
||||
<pre><code>compile 'com.fazecast:jSerialComm:1.3.10'</code></pre>
|
||||
<pre><code>compile 'com.fazecast:jSerialComm:1.3.11'</code></pre>
|
||||
</div>
|
||||
<div id="tabs-5">
|
||||
<pre><code>compile.with 'com.fazecast:jSerialComm:jar:1.3.10'</code></pre>
|
||||
<pre><code>compile.with 'com.fazecast:jSerialComm:jar:1.3.11'</code></pre>
|
||||
</div>
|
||||
<div id="tabs-6">
|
||||
<pre><code>libraryDependencies += "com.fazecast" % "jSerialComm" % "1.3.10"</code></pre>
|
||||
<pre><code>libraryDependencies += "com.fazecast" % "jSerialComm" % "1.3.11"</code></pre>
|
||||
</div>
|
||||
<div id="tabs-7">
|
||||
<pre><code>[com.fazecast/jSerialComm "1.3.10"]</code></pre>
|
||||
<pre><code>[com.fazecast/jSerialComm "1.3.11"]</code></pre>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue