Propeller to USB via FT232 BM
mcstar
Posts: 144
I'm figure out how·to interface a propeller to a device that is connection to a USB to Serial chip (FT232BM).· The device is a motor controller whose protocol I have access to. I have written software in C# to communicate with the device and that works great.· Now I'd like to replace the computer running C# with a propeller. My question is, can you just connect the USB on the proto board to that on one of these chips and send serial data from the Prop?· I don't really understand the USB protocol and I've read somone on this forum that a Protoboard cannot serve as a USB master.· Is this a problem or will the communication just work?
My hope is that I can just connect the Protoboard to the motor controller, power them both up·and start sending commands via the Full-Duplex Serial Driver.· Does anyone know if this will work? Has anyone else tried to do something like this?
Some information about the motor controller (mentions the FT232 chip) is here
http://home.comcast.net/~dprutchi/er1_rcm.pdf·for those interested.
Any inputs appreciated.
My hope is that I can just connect the Protoboard to the motor controller, power them both up·and start sending commands via the Full-Duplex Serial Driver.· Does anyone know if this will work? Has anyone else tried to do something like this?
Some information about the motor controller (mentions the FT232 chip) is here
http://home.comcast.net/~dprutchi/er1_rcm.pdf·for those interested.
Any inputs appreciated.
Comments
It's clearly much much simpler just to connect the Propeller I/O pins to the logic level I/O on the "other side" of the FT232. It's probably powered by 5V and you'll need some protective series resistors. You'll also need to disconnect the FT232 since it will interfere with the Propeller I/O. Note: The FT232 has logic level I/O to the motor controller. Unless there's a MAX232 somewhere in there, you don't need to add one. In fact, you'll damage the Propeller or the motor controller if you do since the MAX232 produces voltages that can damage 3.3V devices like the Propeller.
Thanks again