diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-05-09 12:02:36 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-05-10 05:01:33 +0200 |
commit | 337985b80be224dcf46b0f9550a0d3524a3392e3 (patch) | |
tree | 145560d27530ec15d2ffd5d5fd8a78a509627e59 /tracker-trackhat/settings.cpp | |
parent | cd870a72d31e31bfdabe8494dbc265663909edf0 (diff) |
tracker/trackhat: remove threshold slider
Diffstat (limited to 'tracker-trackhat/settings.cpp')
-rw-r--r-- | tracker-trackhat/settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-trackhat/settings.cpp b/tracker-trackhat/settings.cpp index 0e47ddd0..ec46b1e9 100644 --- a/tracker-trackhat/settings.cpp +++ b/tracker-trackhat/settings.cpp @@ -91,7 +91,7 @@ bool trackhat_camera::init_regs() { auto exp = (uint8_t)t.effective_exposure(); auto exp2 = (uint8_t)(exp == 0xff ? 0xf0 : 0xff); - auto thres = (uint8_t)t.threshold; + auto thres = (uint8_t)0xfe; auto thres2 = (uint8_t)3; auto gain = (uint8_t)t.effective_gain(); |