Tezzeret  1
Tezzeret
MfamMonitor.hpp
1 
2 #ifndef MFAM_MONITOR_HPP
3 #define MFAM_MONITOR_HPP
4 
5 #include <stdio.h>
6 #include <string.h>
7 #include <stdlib.h>
8 #include <stdbool.h>
9 #include <GmFatFs/ff.h>
10 #include "GmStorage.hpp"
11 
12 
13 namespace Geometrics
14 {
15 
16  class GmMfamDataSource;
17 
18  class MfamMonitor : public GmStorage
19  {
20  public:
21  MfamMonitor (GmMfamDataSource *pDataSource);
22  virtual int WriteData (const char* pcData,
23  unsigned int iDataSize,
24  UInt32 ui32Topic);
25 
26  protected:
27  GmMfamDataSource *m_pDataSource;
28  };
29 }
30 
31 
32 
33 #endif
Abstract class - the interface - to the MFAM sensor. This abstract layer was created in order to acco...
Definition: GmMFAMDataSource.hpp:36
Definition: GmStorage.hpp:81
Definition: MfamMonitor.hpp:19
GmApp/GmLoggingApp.hpp>
Definition: Analogs.hpp:47