Replace RXTX-based serial library by one based on JSSC

Development on this was done in https://github.com/gohai/processing-serial-jssc. See also https://github.com/gohai/java-simple-serial-connector for changes to JSSC (not yet upstreamed).
This commit is contained in:
gohai
2013-09-24 08:26:08 -07:00
parent 81f68444b3
commit d46e55714d
4 changed files with 328 additions and 653 deletions

View File

@@ -2,7 +2,7 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="library/RXTXcomm.jar"/>
<classpathentry kind="lib" path="library/jssc.jar"/>
<classpathentry combineaccessrules="false" kind="src" path="/processing-core"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@@ -3,7 +3,7 @@
<target name="clean" description="Clean the build directories">
<delete dir="bin" />
<delete file="library/pdf.jar" />
<delete file="library/serial.jar" />
</target>
<target name="compile" description="Compile sources">
@@ -18,7 +18,7 @@
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../../../core/library/core.jar; library/RXTXcomm.jar"
classpath="../../../core/library/core.jar; library/jssc.jar"
nowarn="true"
compiler="org.eclipse.jdt.core.JDTCompilerAdapter">
<compilerclasspath path="../../mode/ecj.jar" />

View File

@@ -0,0 +1 @@
This is using a modified version of Java Simple Serial Connector by Alexey Sokolov. See https://github.com/gohai/java-simple-serial-connector for details on the modifications.

File diff suppressed because it is too large Load Diff