Network, SD, Readall. comments added

Dependencies:   Peripherals Buffer_lib_v2 SD_Lib_EffedUP_ERP Time_Lib_v2 Year3_Version5 BMP280 Network_Lib TextLCD BME280

Revision:
19:8c5615d0768d
Parent:
18:91285f9cfdb2
Child:
20:15f22e814788
--- a/main.cpp	Fri Jan 04 19:30:06 2019 +0000
+++ b/main.cpp	Fri Jan 18 18:43:21 2019 +0000
@@ -6,6 +6,7 @@
 #include "SD_functions.hpp"
 #include "peripherals.hpp"
 #include "Network.hpp"
+#include "time_functions.hpp"
 
 #ifndef SD_Present
 #define SD_Present
@@ -25,6 +26,7 @@
 Thread t2(osPriorityNormal);    
 Thread t3(osPriorityNormal); 
 Thread t4(osPriorityNormal);
+Thread t5(osPriorityNormal);
 
 
 //LDR sensor
@@ -46,4 +48,5 @@
     t2.start(FunctionSerial); 
     t3.start(FunctionSD1);
     t4.start(Network);   
+    t5.start(UpdateTime);
 }