Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: ExperimentServer QEI_pmw MotorShield
Diff: BezierCurve.cpp
- Revision:
- 17:1bb5aa45826e
- Parent:
- 16:f9ea2b2d410f
--- a/BezierCurve.cpp Thu Sep 24 20:16:05 2020 +0000
+++ b/BezierCurve.cpp Fri Sep 25 04:39:17 2020 +0000
@@ -36,11 +36,11 @@
pc.printf("Setting Points\n");
float * p = pts;
for(int i = 0 ; i<=_order ; i++) {
- pc.printf("\tPt. %d:",i);
+ pc.printf("\n\r\tPt. %d:",i);
for( int j = 0 ; j < _dim ; j++) {
_pts[i][j] = *p;
p++;
- pc.printf("\t\t%f\n",_pts[i][j]);
+ pc.printf("\t\t%f",_pts[i][j]);
}
}
}