File manager

Dependencies:   SDFileSystem

Dependents:   RwSDCard_Xml_GPS

Revision:
5:7c513eee7b2b
Parent:
4:ec62bf823914
Child:
6:5bd75c0f607c
--- a/FileManager.cpp	Sun May 15 10:10:25 2016 +0000
+++ b/FileManager.cpp	Mon May 16 08:29:39 2016 +0000
@@ -403,6 +403,16 @@
             {
                 /* Found variable  address TAG, populate it*/
                 FileManager_GetXmlText(buf , m_varList[index].varAddress);
+            }
+            else if (strstr (buf,VAR_SIZE_TAG)) 
+            {
+                /* Found variable  size TAG, populate it*/
+                FileManager_GetXmlText(buf , m_varList[index].varSize);
+            }
+            else if (strstr (buf,VAR_UNIT_TAG)) 
+            {
+                /* Found variable  unit TAG, populate it*/
+                FileManager_GetXmlText(buf , m_varList[index].varUnit);
                 index++;
             }