I just updated the Single_Arduino_SNAP libraries in subversion. They _should_ now build on Arduino-0012 and the reported problems of the firmware being too large to fit are also resolved. I don't have a setup which works with SNAP, so if anyone cares to give this a spin it would be great.by kintel - RepRap Host
Hi, I assume you mean _DXF_. In that case, I've been using pstoedit (http://www.pstoedit.net/) and it works like a charm.by kintel - General
sid Wrote: > So is there a way to set different speeds for > outline and infill? > And if not, any chance you can add that? > This is on my wishlist too Re. the dialog size discussion: It feels like the feedrate and flowrate settings should be in another tool than raft. Such a split might also reducethe complexity of this component. Great work!by kintel - RepRap Host
Enrique, Playing around a bit with oozebane, I think I have a suggestion for improvement: Today, when the extruder is turned off for a very short time, e.g. when moving up to the next layer, the oozebane kicks in. The value of oozebane here is minimal, and only useful if the parameters are tuned perfectly. My suggestion would be to implement a minimum time the extruder has to be off before oozeby kintel - RepRap Host
This is a debug build with extra debug messages. To disable them, either get the latest version of rxtx, or compile it from source. You might have to patch it according to my suggestion on the mailing list. I haven't followed this project for a while, so I don't know if this has been fixed by now.by kintel - RepRap Host
Hi again, We've been playing around a bit with towering and combing and have found some dubious behavior with these settings: Look at the attached file. It describes two circular towers with single-filament-width walls. We observe the following behavior which we don't quite understand: 1) When only combing is used, the extruder makes two entire round around each layer, both on the inside and tby kintel - RepRap Host
The Arduino GCode interpreter does indeed support the M108 command. I've always been using the latest version from Subversion, so it might be that you've encountered a bug in the current released version. Zach has mentioned that he'll try to get out a new release soon. In the meanwhile, you could try the bleeding edgeby kintel - RepRap Host
Yeah, that's my debugging messages identifying another crash. Unfortunately, I didn't get around to start debugging that one..by kintel - RepRap Host
Hm, this is really a bit out of my league... Tips for debugging: o Test with Java5 vs. Java6 o Test on other OS'es o Test with a different vendor of usb2serial adapters o Test in 32- vs 64-bits JVMs The issue I'm talking about is _only_ related to 64-bit JVMs so you need to make sure this is the only place where you're experiencing this problem. Otherwise, you'll be barking up the wrong tree.by kintel - RepRap Host
Hi again, I've attached the libraries I compiled which includes a fix for some of the issues. I haven't used this myself for a long while, so I cannot guarantee that it will work though. At the moment, I'd recommend porting your software away from Java 6. Alternatively, you could work with the guys on the rxtx mailing list to help getting these issues sorted out. AFAIU, this is not a Mac-specifby kintel - RepRap Host
Hi, You should just get your hands dirty Check out AVR-USB and libusb. Some starting points:by kintel - RepRap Host
Hi, The host software should work with Java 1.5 again, so this fix is not needed at the moment.by kintel - RepRap Host
Hi Enrique, Thanks a lot for your super-quick fix! It all looks fine again here now : )by kintel - RepRap Host
Enrique, My skeinforge prefs are attached. I'm running this on the built-in Python 2.5.1 on Mac OS X 10.5.by kintel - RepRap Host
I guess you're aware of this, so just FYI: This update didn't appear to resolve the ZeroDivisionError I reported a few days ago. Another thing btw.: Eventually, we would like to spend some time getting dirty with the skeinforge source code to be able to fix stuff and experiment with our own ideas. Do you have any suggested starting points for this? Also, whenever we get this far, it would makeby kintel - RepRap Host
Hi Enrique, I'm experiencing some problems with the latest Skeinforge (using the latest revision from svn). Basically, Skeinforge crashes with a ZeroDivisionError. This happens with a lot of models, and the problems started with the latest update. The revision from ca. 3 weeks ago works well. To reproduce, use the default values for all preferences except these: slice_shape: Extrusion Diameterby kintel - RepRap Host
If you're using an atmega8, you have to implement the USB stack in software as this device has no built-in USB support. In addition, the 8KB memory on this one is far too little to fit the Reprap firmware. ..or did you mistype your device name? Regarding USB, using CDC instead of HID would give us the same behavior from the host's point of view. This would simplify things a lot in terms of connby kintel - RepRap Host
Also note that you're pretty much on your own if you use a 64-bit JVM since the 64-bit support on the RxTx library is a bit flaky. Have a look at the rxtx mailing list for more information. I haven't tested this in a while though since we're only using the GCode pipeline atm., so the 64-bit support might have improved lately.by kintel - RepRap Host
jgilmore Wrote: ------------------------------------------------------- > It does sound like Marius and the good folks at > reprap.soup.io have a more sophisticated solution. > It is written in cpp and requires a different > library, which is a downside. It's not cpp, but Java/Processing, it's very basic, and it's trivial to get started with; just download Processing (it's like theby kintel - RepRap Host
Hi, We're using Zach's GCode Host, written in Processing. It's slightly modified, and the latest version is here: For jogging, we wrote our own exerciser, also in Processing: No GUI though, just a keypress interface. Rumor has it that Zach is cooking up something awesome thoughby kintel - RepRap Host
Thanks for the update! I'm attaching a gts file which gives the following message 24 times during the comb stage: "This should never happen, closestBetween should always exist." The models extrudes fine nevertheless, but since I don't have any experience with comb, I thought I'd let you know. I can send you the aoi file if you prefer. This message has been around in the last few releases, I jusby kintel - RepRap Host
Hi, Thanks for the dialog re. module loading Enrique I have attached a patch with some suggestions for fixes/improvements. It would be cool if you could look at it and incorporate what you think makes sense. skeinforge.py: Support for running the toolchain from the cmd-line without the open file dialog. raft.py: Bugfixes for uninitialized extrusionTop and operatingJump when _not_ using a raftby kintel - RepRap Host
Hi Enrique, See below for a new trace. ~/= Marius -- We are Elektropeople for a better living. No module named /Users/kintel/Downloads/reprap_python_beanshell-1/skeinforge_tools That error means; could not import a module with the filename analyze folder name analyze and module filename skeinforge.py giving a plugins folder name of /Users/kintel/Downloads/reprap_python_beanshell-1/skeinforby kintel - RepRap Host
Thanks for the update Enrique, I have a few issues (and also a few fixes - will post once I have the toolchain running again), but I'm stuck on one issue (see below for the trace): It appears that there is a problem in gcodec.getModule(). You're using an absolute filename as an argument to __import__. This is, AFAIU, not according to the documentation and fails on my system (Python 2.5.1 on Macby kintel - RepRap Host
Thanks I've had some headaches with Mac OS X and Java 1.6, due to the fact that Java 1.6 on Mac comes as a 64-bit only JVM, meaning that all JNI libraries also need to be 64-bit. At the moment, rxtx appears to be the only problem, which is partially fixed (although it still crashes some places). It would be nice if we can keep the host software on 1.5, at least until the 64-bit stuff stabilizesby kintel - RepRap Host
Hi, This is a bug in rxtx. I've written a quick fix for it. It doesn't fix everything, but it makes the host software run. See here for the patch: I didn't update the reprap wiki yet since there is still a bug lurking in there somewhere. Don't hesitate to get in touch if you need more assistance. -Mariusby kintel - RepRap Host