This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| reprap_software [2007-10-01 13:09] – 192.168.1.38 | reprap_software [2008-05-17 13:52] (current) – nik | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== PPC java ====== | + | ==== Software & Fimware notes ==== |
| + | . . .for the [[reprap]] (the older PPC notes can be found in [[debian ppc]] ) | ||
| - | since we are using this mac laptop | + | ==== RXTX ==== |
| + | |||
| + | used the "Mac OSX/Source package" | ||
| + | |||
| + | ==== RepRap Host ==== | ||
| + | |||
| + | initially i added the java3d jar files on the classpath with '' | ||
| + | |||
| + | ultimately i just copied all of the jar files to the correct places, eg: | ||
| + | |||
| + | < | ||
| + | sudo mv j3d-org-java3d-all.jar / | ||
| + | |||
| + | sudo cp -v j3d-core/ | ||
| + | sudo cp -v j3d-core/ | ||
| + | sudo cp -v vecmath/ | ||
| + | |||
| + | sudo cp -v j3d-core/ | ||
| + | </ | ||
| + | |||
| + | (the first one is the j3d.org jar file we need which contains the STLLoader and is linked from the [[http://reprap.org/bin/view/ | ||
| + | |||
| + | and finally, we were getting a lot of errors like: | ||
| + | |||
| + | < | ||
| + | STLObject(): | ||
| + | com.sun.j3d.loaders.IncorrectFormatException: sun.io.MalformedInputException | ||
| + | </ | ||
| + | |||
| + | which was ultimately fixed by running in a non-UTF-8 locale, I did this by editing | ||
| + | |||
| + | < | ||
| + | # | ||
| + | LANG=${LANG%%.UTF-8} java -Xmx384m -jar Reprap.jar | ||
| + | </ | ||
| + | |||
| + | the '' | ||
| + | |||
| + | this locale problem is described in ''/ | ||
| + | |||
| + | ==== FIRMWARE ==== | ||
| + | * using the k8048 PIC programmer | ||
| + | * installed sdcc (2.7.0 #4818) & gputils (0.13.5-2) from debian.. (note sure about the advice at http:// | ||
| + | * built from svn (checkout 2008-05-17) in ~/ | ||
| + | * compiled firmware -> flashed PICS -> ' | ||
| + | |||
| + | ==== pyRepRap ==== | ||
| + | * ~/ | ||
| + | * http:// | ||
| - | you also need the libstdc++5 package, which is missing from the IBM jdk requirements. | ||