1st release (without comment)

Revision:
10:ec0470d18ea4
Parent:
9:025a189e5082
Child:
12:3bbbabca6590
--- a/RMS_UART.cpp	Tue Sep 20 07:40:01 2016 +0000
+++ b/RMS_UART.cpp	Tue Sep 20 23:52:21 2016 +0000
@@ -404,7 +404,7 @@
     Msg_index = 0;
     
     /* Clear buffer */
-    memset(Msg_RxBuf,' ',MSG_BUF_SIZE);
+    memset(Msg_RxBuf,_SPACE,MSG_BUF_SIZE);
 }
 
 /**
@@ -418,7 +418,7 @@
     Content_index = 0;
     
     /* Clear buffer */
-    memset(Content_RxBuf,' ',CONTENT_BUF_SIZE);
+    memset(Content_RxBuf,_SPACE,CONTENT_BUF_SIZE);
 }
 
 /**
@@ -429,6 +429,6 @@
 void ClearFileNameBuf()
 {   
     /* Clear buffer */
-    memset(FileName,' ',MSG2FILENAME);
+    memset(FileName,_SPACE,MSG2FILENAME);
 }
 ////////////////////////////////////////////////* END *////////////////////////////////////////////////
\ No newline at end of file