#pragma once #include #include // TODO: get rid of qstring #include constexpr size_t img_width = 1280; constexpr size_t img_height = 800; constexpr size_t img_size = img_width * img_height; constexpr uint32_t patternSize = 16; constexpr float hardcodedZRangeMm{175.f}; constexpr size_t calibrationTableHeight{0x4000}; // 16384 namespace { constexpr uint16_t discretesInRage{16384}; } // http json keys const QString exposureTimeKey = "exposureTime"; const QString laserLevelKey = "laserLevel"; const QString dumpsRoot{QStringLiteral("/home/user/dumps")};