This commit is contained in:
commit
ce43f8419d
1 changed files with 21 additions and 0 deletions
21
ArduinoSerialEchoTest.ino
Normal file
21
ArduinoSerialEchoTest.ino
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
//this can be used to test a uart connected GPS.
|
||||||
|
|
||||||
|
void setup() {
|
||||||
|
// initialize both serial ports:
|
||||||
|
Serial.begin(9600);
|
||||||
|
Serial1.begin(9600);
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
// read from port 1, send to port 0:
|
||||||
|
if (Serial1.available()) {
|
||||||
|
int inByte = Serial1.read();
|
||||||
|
Serial.write(inByte);
|
||||||
|
}
|
||||||
|
|
||||||
|
// read from port 0, send to port 1:
|
||||||
|
if (Serial.available()) {
|
||||||
|
int inByte = Serial.read();
|
||||||
|
Serial1.write(inByte);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue