Weather casting with Machine Learning (SVM and SRNN).

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

main.hpp

Committer:
yukari_hinata
Date:
2015-02-16
Revision:
1:8538381cae81
Parent:
0:f6cdb984f638
Child:
2:20ecfe6edd71

File content as of revision 1:8538381cae81:

#ifndef MAIN_H_INCLUDED
#define MAIN_H_INCLUDED

#include "mbed.h"
#include "rtos.h"

#include "EthernetInterface.h"
#include "NTPClient.h"

#include "MCSVM.hpp"
#include "SRNN.hpp"
#include "SensorModule.hpp"
#include "GraphicHandler.hpp"

#include "share.hpp"
#include "setup.hpp"

#include "./debug/debug.hpp" // 

// 時間(global)
extern time_t global_time;      // 現在時刻
extern Mutex  time_mutex;       // 時間のMutex
// Pointer to Class instance (global)
extern SRNN            *srnn;
extern MCSVM           *mcsvm;
extern SensorModule    *sensor_module;
extern GraphicHandler  *graphic_handler;
// ネットワーク関係(global)
extern EthernetInterface    eth_if;
extern TCPSocketServer      http_server;
extern NTPClient            ntp_client;
// ファイルシステム(global)
extern LocalFileSystem      *local_fs;

#endif /* MAIN_H_INCLUDED */