banedon wrote:
I am using a 'scope, but the signals were solid.
BTW do I need to use a null modem cable? Mine is straight through...
You wired your project up as a DTE. A PC is also wired up as DTE so you will need a null modem cable, yes.
Normally a full null modem connection between two RS-232 ports that us all signals, uses these connections:
TXD -> RXD
RXD <- TXD
RTS -> CTS
CTS <- RTS
DTR -> DSR and DCD
DSR and DCD <- DTR
GND
RI can stay disconnected on both ends.
The PC uses a female DB-9 connector, and so should your project, if they are DTE wired (i.e. RXD on pin 2, TXD on pin 3). Your straight wire has a male DB-9 and a female DB-9, but a null modem adapter or cable has two male DB-9 connectors.
When nothing is transmitted or received, you should measure between -3 and -12V on all pins except GND and RI. If not, something is disconnected or connected wrongly, or your cable doesn't have wires on all pins or the PC on the other side doesn't have CTS/RTS and/or DSR/DTR implemented. In that case, you can use a null modem that connects fewer wires and has loopback wires. Google for "null modem cable" for more info.
NB: DTE=Data Terminal Equipment, i.e. a terminal or a computer; DCE=Data Communication Equipment, e.g. a modem.
===Jac