diff options
| author | a1xd <[email protected]> | 2021-09-06 19:16:06 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-23 22:28:44 -0400 |
| commit | 39e042a799e7abf0886119ef471eaee261aa02cc (patch) | |
| tree | dbd9d48073f9913ea9c7ba3d607924d832134609 /common/rawaccel-base.hpp | |
| parent | move safeboot check into DriverEntry (diff) | |
| download | rawaccel-39e042a799e7abf0886119ef471eaee261aa02cc.tar.xz rawaccel-39e042a799e7abf0886119ef471eaee261aa02cc.zip | |
increase lut points capacity to 257
remove unneeded constants
Diffstat (limited to 'common/rawaccel-base.hpp')
| -rw-r--r-- | common/rawaccel-base.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/common/rawaccel-base.hpp b/common/rawaccel-base.hpp index 8a49681..258cfef 100644 --- a/common/rawaccel-base.hpp +++ b/common/rawaccel-base.hpp @@ -13,12 +13,10 @@ namespace rawaccel { inline constexpr milliseconds WRITE_DELAY = 1000; - inline constexpr size_t POOL_SIZE = 1024 * 512; - inline constexpr size_t MAX_DEV_ID_LEN = 200; inline constexpr size_t MAX_NAME_LEN = 256; - inline constexpr size_t LUT_RAW_DATA_CAPACITY = 258; + inline constexpr size_t LUT_RAW_DATA_CAPACITY = 514; inline constexpr size_t LUT_POINTS_CAPACITY = LUT_RAW_DATA_CAPACITY / 2; inline constexpr double MAX_NORM = 16; |