Critical Link MityCam SoC Firmware  1.0
Critical Link MityCam SoC Firmware
EdgeDetection.h
Go to the documentation of this file.
1 /*
2  * EdgeDetection.h
3  *
4  * Created on: May 20, 2015
5  * Author: mitydsp
6  */
7 
8 #ifndef EDGEDETECTION_H_
9 #define EDGEDETECTION_H_
10 
11 #include <libfpga/fpgaregister.h>
12 
14 public:
15  tcEdgeDetection(int anBaseAddress);
16  virtual ~tcEdgeDetection();
17 
21  bool initialized();
22 
27  void reset(bool abReset);
28 
33  void enable(bool abEnable);
34 
39  bool getEnable();
40 
41 private:
42  tcFPGARegister<unsigned int> mhEdgeDetect;
43 };
44 
45 #endif /* EDGEDETECTION_H_ */
tcEdgeDetection::tcEdgeDetection
tcEdgeDetection(int anBaseAddress)
Definition: EdgeDetection.cpp:14
tcEdgeDetection
Definition: EdgeDetection.h:13
tcEdgeDetection::enable
void enable(bool abEnable)
Definition: EdgeDetection.cpp:37
tcEdgeDetection::getEnable
bool getEnable()
Definition: EdgeDetection.cpp:46
tcEdgeDetection::reset
void reset(bool abReset)
Definition: EdgeDetection.cpp:28
tcEdgeDetection::initialized
bool initialized()
Definition: EdgeDetection.cpp:23
tcEdgeDetection::~tcEdgeDetection
virtual ~tcEdgeDetection()
Definition: EdgeDetection.cpp:19