herolic / aeroquad

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

'S' command on github is buggy #132

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
PrintValueComma((int)armed);
comma();
Remove the comma call.

    for (byte axis = ROLL; axis < LASTAXIS; axis++) {
      if (axis == ROLL)
        PrintValueComma(accel.getFlightData(YAXIS));
      else if (axis == PITCH)
        PrintValueComma(accel.getFlightData(XAXIS));
      else
        PrintValueComma(accel.getFlightData(ZAXIS));
    }
Change configurator and the code above to take the natural order.

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

GoogleCodeExporter commented 9 years ago
Done, thanks!

Original comment by CaranchoEngineering@gmail.com on 27 Jul 2011 at 7:47