File manager

Dependencies:   SDFileSystem

Dependents:   RwSDCard_Xml_GPS

Revision:
8:5af4e12c43b2
Parent:
6:5bd75c0f607c
Child:
9:b9115b3a77f9
--- a/FileManager.cpp	Tue May 17 10:22:32 2016 +0000
+++ b/FileManager.cpp	Wed May 18 07:38:25 2016 +0000
@@ -140,14 +140,23 @@
                 {
                     /* Get XML text for GPS Interval */
                     FileManager_GetXmlText(buf, m_GpsInterval);
+                    #if DEBUG
                     printf("\r\n-found GPS interval %s ", m_GpsInterval);
+                    #endif
+                    
+                    /* Set state to indicate that we are finding */
                     state = STATE_FINDING;
                 } 
                 else if(state == STATE_FOUND_DATA) 
                 {
                     /* Get XML text for Data Interval */
                     FileManager_GetXmlText(buf, m_DataInterval);
+                    
+                    #if DEBUG
                     printf("\r\n-found Data interval %s ", m_DataInterval);
+                    #endif
+                    
+                    /* Set state to indicate that we are finding */
                     state = STATE_FINDING;
                 }
             }