Weather casting with Machine Learning (SVM and SRNN).

Dependencies:   EthernetInterface GraphicHandler NTPClient SRNN SVM SensorModule mbed-rtos mbed

Revision:
3:5add3759e08a
Parent:
2:20ecfe6edd71
Child:
5:b61f3f5b0fc8
diff -r 20ecfe6edd71 -r 5add3759e08a main.hpp
--- a/main.hpp	Wed Feb 18 15:02:16 2015 +0000
+++ b/main.hpp	Thu Feb 19 08:20:46 2015 +0000
@@ -6,7 +6,6 @@
 
 #include "EthernetInterface.h"
 #include "NTPClient.h"
-#include "HTTPServer.h"
 
 #include "MCSVM.hpp"
 #include "SRNN.hpp"
@@ -26,7 +25,6 @@
 extern GraphicHandler  *graphic_handler;
 // ネットワーク関係(global)
 extern EthernetInterface    eth_if;
-extern HTTPServer           *http_server;
 extern NTPClient            ntp_client;
 // ファイルシステム(global)
 extern LocalFileSystem      *local_fs;
@@ -36,4 +34,6 @@
 extern int*   new_predict_weather;     // 現在の予測天気
 extern float* new_predict_probability; // 現在の予測天気の確率(厳密には,確率ではない...)
 
+extern int open_count;
+
 #endif /* MAIN_H_INCLUDED */
\ No newline at end of file