From aa2b937d4fe77aefd618d34cbb8c2989ecfd89fe Mon Sep 17 00:00:00 2001 From: a-mff Date: Tue, 28 Jul 2020 14:14:13 +0200 Subject: [PATCH] more readable sub-1-second exposure times --- sdk/src/commander.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/sdk/src/commander.h b/sdk/src/commander.h index 474be9d..ba1b4ec 100644 --- a/sdk/src/commander.h +++ b/sdk/src/commander.h @@ -27,18 +27,18 @@ public: { Auto = 0, - S_1_6400 = 39168, - S_1_3200 = 35968, - S_1_2000 = 34768, - S_1_1000 = 33768, - S_1_500 = 33268, - S_1_240 = 33008, - S_1_120 = 32888, - S_1_60 = 32828, - S_1_30 = 32798, - S_1_15 = 32783, - S_1_8 = 32776, - S_1_4 = 32772, + S_1_6400 = 32768 + 6400, + S_1_3200 = 32768 + 3200, + S_1_2000 = 32768 + 2000, + S_1_1000 = 32768 + 1000, + S_1_500 = 32768 + 500, + S_1_240 = 32768 + 240, + S_1_120 = 32768 + 120, + S_1_60 = 32768 + 60, + S_1_30 = 32768 + 30, + S_1_15 = 32768 + 15, + S_1_8 = 32768 + 8, + S_1_4 = 32768 + 4, S_1 = 1, S_2 = 2, -- GitLab