On 12 Oct 2013 , at 10:20 AM, Bence Blaske wrote:
> Thanks, just checked the VID and PID of the device and it matches those
> found in the py source files (I found them in the python subfolder as egg
> packages).
> I also remember seeing that the whole electronics of this clone is original
> Makerbot branded,
That doesn't mean much beyond they used MBI's public gerber files.
> so probably also the Arduino (which I think is not a
> 2560). The vid is 0403 and pid is 6001.
0403 is FTDI's VID which you end up with if you use their USB chip. And
6001 is FTDI's PID for "FT232 USB-Serial (UART) IC".
And yes, those are in Conveyor's serial.py,
_SERIAL_PORT_CATEGORIES = [
_SerialPortCategory(0x0403, 0x6001, 'FTDI', 's3g',),
_SerialPortCategory(0x2341, 0x0010, 'Arduino Mega', 's3g',),
_SerialPortCategory(0x23C1, 0xD314, 'Replicator', 's3g',),
_SerialPortCategory(0x23C1, 0xB015, 'Replicator 2', 's3g',),
_SerialPortCategory(0x23C1, 0xB016, 'Replicator 2', 's3g',),
_SerialPortCategory(0x23C1, 0xB017, 'Replicator 2X', 's3g',),
]
So, next you might check that the reset trace is cut. Also, you really do need
to be using a current makerware since older makerwares do not handle all of
MBI's own S3G specification. With Sailfish 4.5, we put back in support for
returning S3G errors (was commented out by MBI circa 3.0 or 2.8). MakerWare
didn't have support for that aspect of the S3G specification, but MBI put it
in a few months back.
Dan