MTF
RKLTParams.h
1 #ifndef MTF_RKLT_PARAMS_H
2 #define MTF_RKLT_PARAMS_H
3 
4 #include "mtf/Macros/common.h"
5 
6 _MTF_BEGIN_NAMESPACE
7 
8 struct RKLTParams{
9  bool enable_spi;
10  bool enable_feedback;
11  bool failure_detection;
12  double failure_thresh;
13  bool debug_mode;
14 
15  RKLTParams(bool _enable_spi, bool _enable_feedback,
16  bool _failure_detection, double _failure_thresh,
17  bool _debug_mode);
18  RKLTParams(const RKLTParams *params = nullptr);
19 };
20 
21 _MTF_END_NAMESPACE
22 
23 #endif
24 
Definition: RKLTParams.h:8