QC Control software

Dependencies:   mbed

Fork of dgps by Colin Stearns

Files at this revision

API Documentation at this revision

Comitter:
dylanembed123
Date:
Tue Apr 22 14:57:39 2014 +0000
Parent:
27:db73f8ac6c75
Child:
30:327191ff57e8
Child:
33:ad63e7013801
Commit message:
Fix a few errors in documentation

Changed in this revision

handle/dataLocation.h Show annotated file Show diff for this revision Revisions of this file
--- a/handle/dataLocation.h	Tue Apr 22 14:56:03 2014 +0000
+++ b/handle/dataLocation.h	Tue Apr 22 14:57:39 2014 +0000
@@ -2,12 +2,12 @@
   *  \brief Data location data holder
   **/
 // Example Usage
-// Looping: for(int i=0;i<DH::locs().getI(LHType_locs);i++){DataLocation thisData=DH::locs().getC(LHType_locs,i);}
+// Looping: for(int i=0;i<DH::locs().getI(LHType_locs,LHIType_size);i++){DataLocation thisData=DH::locs().getC(LHType_locs,i);}
 // Appending: DH::locs().add(LHType_locs,DataLocation(4.0f,5.0f,6.0f));
 // ResetStart: DH::locs().inc(LHType_locs,0,true);
 // ResetEnd: DH::locs().inc(LHType_locs,-1,true);
 // Increment: DH::locs().inc(LHType_locs);
-// GetCurrent: DH::locs().getC(LHType_locs,DH::locs().getI());
+// GetCurrent: DH::locs().getC(LHType_locs,DH::locs().getI(LHType_locs));
 #ifndef _DATA_LOCATION_H_
 #define _DATA_LOCATION_H_
 #define MAXNUMLOCS 64