herolic / aeroquad

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

'Q' command on github is buggy #131

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
You must not send further values after a println
#if defined(HeadingMagHold)
      PrintValueComma(compass.getRawData(XAXIS));
      PrintValueComma(compass.getRawData(YAXIS));
      SERIAL_PRINTLN(compass.getRawData(ZAXIS));
    #else
      PrintValueComma(0);
      PrintValueComma(0);
      SERIAL_PRINTLN('0');
    #endif
    PrintValueComma(degrees(flightAngle->getData(ROLL)));
These SERIAL_PRINTLN must be PrintValueComma.

Original issue reported on code.google.com by al...@arcor.de on 26 Jul 2011 at 10:06

GoogleCodeExporter commented 9 years ago
Done, thanks!

Original comment by CaranchoEngineering@gmail.com on 27 Jul 2011 at 9:46