RS-232 communication using an Arduino Duemilanove

2019-07-18 20:41发布

问题:

I'm having some trouble getting my Arduino microcontroller to read RS-232 signals. My project requires me to read data that is being outputted by an air quality monitor.

My components:

  • Arduino Duemilanove
  • Cutedigi RS-232 interface

To test if the serial communications is working properly, I found some example code on the Arduino website. This is the exact code that I am running:

//Created August 23 2006
//Heather Dewey-Hagborg
//http://www.arduino.cc

#include <ctype.h>

#define bit9600Delay 84
#define halfBit9600Delay 42
#define bit4800Delay 188
#define halfBit4800Delay 94

byte rx = 0;
byte tx = 1;
byte SWval;

void setup() {
    pinMode(rx,INPUT);
    pinMode(tx,OUTPUT);
    digitalWrite(tx,HIGH);
    digitalWrite(13,HIGH); //turn on debugging LED
    SWprint('h');  //debugging hello
    SWprint('i');
    SWprint(10); //carriage return
}

void SWprint(int data)
{
    byte mask;
    //startbit
    digitalWrite(tx,LOW);
    delayMicroseconds(bit9600Delay);
    for (mask = 0x01; mask>0; mask <<= 1) {
        if (data & mask){ // choose bit
            digitalWrite(tx,HIGH); // send 1
        }
        else{
            digitalWrite(tx,LOW); // send 0
        }
        delayMicroseconds(bit9600Delay);
    }
    //stop bit
    digitalWrite(tx, HIGH);
    delayMicroseconds(bit9600Delay);
}

int SWread()
{
    byte val = 0;
    while (digitalRead(rx));
    //wait for start bit
    if (digitalRead(rx) == LOW) {
        delayMicroseconds(halfBit9600Delay);
        for (int offset = 0; offset < 8; offset++) {
            delayMicroseconds(bit9600Delay);
            val |= digitalRead(rx) << offset;
        }
        //wait for stop bit + extra
        delayMicroseconds(bit9600Delay);
        delayMicroseconds(bit9600Delay);
        return val;
    }
}

void loop()
{
    SWval = SWread();
    SWprint(toupper(SWval));
}

I changed the RX and TX pins to 0 and 1 respectively, because these are the pins that the Cutedigi RS-232 chip uses. Now, when I open a terminal window and type characters in, I get garbled symbols and letters (like this: ¾_ò_òòËÌßÌËßÌÊÌòyofyofsæóÙöÇ æü æ).

According to the example code website, if I type abcdefg, the terminal window should display ABCDEFG.

Why would this be the case? I have set the baud rate to 9600, as specified in the sketch, but I'm still getting issues. Resetting the Arduino doesn't seem to help either - I still get garbled text.

回答1:

I figured out what the issue was.

It turns out that I was trying to connect two DCE devices together, which means that a null modem adapter was necessary to swap the TX/RX pins on the cable. Previously, I was using a simple gender changer, but this is what was causing my problems.

Try getting a null modem adapter if you're having problems like this.