logging data on PC from BS2 USB education board
AlexJaw
Posts: 4
I need a link to a project explaining·how data (temperature data, i.e. Word)·from BS2 USB·is transfered and stored on the PC. I would like to make the connection to the BS2·with Matlab. I have looked at the serin/serout commands in the reference manual, tried it with Matlab without success. Have searched among the educational material and on the forum but have not really found any info regarding USB connection and storage on PC.
/AJ
/AJ
Comments
But am I completely wrong about serin/serout over USB?
From the PC side, if you have the proper (FTDI) USB driver installed, you have a serial port when you plug in the USB connection to the USB BOE. Any program that talks to a serial port can talk to the Stamp.
Because of how the "programming" port is implemented, the only Baud supported is 9600, 8-bit, no parity and any characters sent from the PC are echoed back to the PC (and software has to take that into account). This also occurs on the Stamp side, but the Stamp only does unbuffered simplex serial I/O (one direction at a time) so it doesn't see any echoing.
Post Edited (Mike Green) : 5/27/2007 6:57:29 PM GMT
Thank's again!
Try searching for Matlab with it, and you should find some code samples.