eive-obsw/linux/ipcore/pdecconfigdefs.h

21 lines
516 B
C
Raw Normal View History

2023-02-15 10:21:35 +01:00
#ifndef LINUX_IPCORE_PDECCONFIGDEFS_H_
#define LINUX_IPCORE_PDECCONFIGDEFS_H_
#include <string>
namespace pdecconfigdefs {
namespace paramkeys {
2023-02-23 15:27:24 +01:00
static const std::string POSITIVE_WINDOW = "positive_window";
static const std::string NEGATIVE_WINDOW = "negattive_window";
} // namespace paramkeys
2023-02-15 10:21:35 +01:00
namespace defaultvalue {
2023-02-23 15:27:24 +01:00
static const uint8_t positiveWindow = 10;
static const uint8_t negativeWindow = 151;
} // namespace defaultvalue
2023-02-15 10:21:35 +01:00
2023-02-23 15:27:24 +01:00
} // namespace pdecconfigdefs
2023-02-15 10:21:35 +01:00
#endif /* LINUX_IPCORE_PDECCONFIGDEFS_H_ */