-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rip-and-replace rxtx for jssc (#121)
* Initial commit of jssc->rxtx replacement * Don't forget the libs * Correct substitutions for jssc * Bug in length calc for page-aligned bootstrap downloads * Binary file transfer overhaul * Actually retry when we have a bad acknowledgement * Add logging jar for jssc, don't flush serial because it hurts * Update documentation for removal of rxtx, add github * Complain when serial port is in use * OSX-/// bootstrapping repair * Platform-independent serial buffer speed management * vsdrive doc updates * Prepare for 2.1.0 release * Remove adtpro.cmd * Line endings for Windohs * Just some spacing problems * Copyright date
- Loading branch information
1 parent
990b062
commit 229731e
Showing
56 changed files
with
370 additions
and
519 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,24 @@ | ||
@echo off | ||
REM | ||
REM ADTPro - Windows startup batch file | ||
REM | ||
REM Note: | ||
REM Invoke with the name of the communications button to push | ||
REM in order to start with that mode active (i.e. 'adtpro ethernet') | ||
|
||
SET ADTPRO_HOME=%CD%\ | ||
|
||
REM You can set two variables here: | ||
REM 1. %JAVA_HOME% - to pick a particular java to run under | ||
REM 2. %ADTPRO_HOME% - to say where you installed ADTPro | ||
REM | ||
REM e.g. uncomment (remove the "REM" from in front of) and | ||
REM customize the following SET statements. | ||
REM Note: They must have a trailing backslash as in the examples! | ||
REM | ||
REM SET ADTPRO_HOME=C:\src\workspace\35\adtpro\build\ | ||
REM SET MY_JAVA_HOME=C:\Progra~1\IBM\Java142\bin\ | ||
|
||
set RXTX_PATH=%RXTX_VERSION_OLD% | ||
set RXTX_ARCH=%RXTX_PATH%\Windows\i368-mingw32 | ||
|
||
IF "%PROCESSOR_ARCHITECTURE%"=="x86" goto add_classpath | ||
|
||
:bit64 | ||
REM Assume 64 bit Windows if not x86 | ||
set RXTX_PATH=%RXTX_VERSION_WIN64% | ||
set RXTX_ARCH=%RXTX_PATH% | ||
|
||
:add_classpath | ||
SET CWD=%CD% | ||
if "%ADTPRO_CLASSPATH_SET%" == "1" goto start | ||
set ADTPRO_CLASSPATH_SET=1 | ||
PATH=%PATH%;%ADTPRO_HOME%lib\rxtx\%RXTX_ARCH% | ||
|
||
:start | ||
CD "%ADTPRO_HOME%" | ||
start /min %MY_JAVA_HOME%java -Xms128m -Xmx256m %ADTPRO_EXTRA_JAVA_PARMS% -cp "%ADTPRO_HOME%lib\%ADTPRO_VERSION%";"%ADTPRO_HOME%lib\rxtx\%RXTX_PATH%\RXTXcomm.jar";"%ADTPRO_HOME%lib\AppleCommander\AppleCommander-%AC_VERSION%.jar" org.adtpro.ADTPro %* | ||
@echo off | ||
REM | ||
REM ADTPro - Windows startup batch file | ||
REM | ||
REM Note: | ||
REM Invoke with the name of the communications button to push | ||
REM in order to start with that mode active (i.e. 'adtpro ethernet') | ||
|
||
SET ADTPRO_HOME=%CD%\ | ||
|
||
REM You can set two variables here: | ||
REM 1. %JAVA_HOME% - to pick a particular java to run under | ||
REM 2. %ADTPRO_HOME% - to say where you installed ADTPro | ||
REM | ||
REM e.g. uncomment (remove the "REM" from in front of) and | ||
REM customize the following SET statements. | ||
REM Note: They must have a trailing backslash as in the examples! | ||
REM | ||
REM SET ADTPRO_HOME=C:\src\workspace\35\adtpro\build\ | ||
REM SET MY_JAVA_HOME=C:\Progra~1\IBM\Java142\bin\ | ||
|
||
:start | ||
CD "%ADTPRO_HOME%" | ||
start /min %MY_JAVA_HOME%java -Xms128m -Xmx256m %ADTPRO_EXTRA_JAVA_PARMS% -cp "%ADTPRO_HOME%lib\%ADTPRO_VERSION%";"%ADTPRO_HOME%lib\AppleCommander\AppleCommander-%AC_VERSION%.jar";"%ADTPRO_HOME%lib\jssc\jssc-%JSSC_VERSION%.jar";"%ADTPRO_HOME%lib\jssc\slf4j-nop-%SLF4J_VERSION%.jar" org.adtpro.ADTPro %* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/doc/ |
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.