henrioliv / sf9domahrs

Automatically exported from code.google.com/p/sf9domahrs
0 stars 0 forks source link

Garbage Communicating with Mega #13

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Load Code onto 9 DOF
2. load following code onto mega
void setup() {
  Serial.begin(57600);
  Serial1.begin(57600);  // Baud rate fixed....
 }

void loop() {

  if(Serial1.available() > 0)
    Serial.print(Serial1.read(), BYTE);
}
3. Wire 9 dof to bread board and attach ftdi as well as linking to aruino 

What is the expected output? What do you see instead?
Expected output is as the program should print data, we see this on hyper 
terminal on the computer,
however on the arduino we only see garbage

What version of the product are you using? On what operating system?
windows 7, 1.0

Please provide any additional information below.

Original issue reported on code.google.com by justin.l...@gmail.com on 16 Dec 2010 at 9:41