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: sd-driver_compatible_with_MAX32630FTHR
Fork of CircularBufferSDCardLib by
Revision 9:a2ba4015796e, committed 2018-04-06
- Comitter:
- DVLevine
- Date:
- Fri Apr 06 04:01:33 2018 +0000
- Parent:
- 8:c62a1aeda47a
- Child:
- 10:f5fdba83488a
- Commit message:
- removed some print statements for speed
Changed in this revision
| dataRecorder.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/dataRecorder.cpp Thu Apr 05 09:14:27 2018 +0000
+++ b/dataRecorder.cpp Fri Apr 06 04:01:33 2018 +0000
@@ -22,7 +22,7 @@
uint16_t DataRecorder::popLastDataPoint(){
- printf("pop data\n");
+ //printf("pop data\n");
m_data_quantity--;
if (m_data_quantity<0){
@@ -39,7 +39,7 @@
}
uint32_t DataRecorder::popLastTimeStamp(){
- printf("pop time\n");
+ //printf("pop time\n");
m_time_quantity--;
if (m_time_quantity<0){
m_time_quantity=0;
@@ -56,7 +56,7 @@
}
void DataRecorder::logDistancePoint(uint16_t value){
- printf("push distance\n");
+ //printf("push distance\n");
m_data_quantity++;
if (m_data_quantity>BUF_SIZE){
m_data_quantity=BUF_SIZE;
@@ -65,7 +65,7 @@
}
void DataRecorder::logTimeStamp(uint32_t value){
- printf("push time\n");
+ //printf("push time\n");
m_time_quantity++;
if (m_time_quantity>BUF_SIZE){
m_time_quantity=BUF_SIZE;
