Skip to content

Commit d09f037

Browse files
author
TinyOh
committed
fix: change cmake version to 2.3.2
1 parent b2bd901 commit d09f037

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
cmake_minimum_required(VERSION 3.0)
1616

17-
project(mynteye VERSION 2.3.1 LANGUAGES C CXX)
17+
project(mynteye VERSION 2.3.2 LANGUAGES C CXX)
1818

1919
include(cmake/Common.cmake)
2020

src/mynteye/api/api.cc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,10 @@ std::shared_ptr<API> API::Create(int argc, char *argv[]) {
224224
auto &&device = device::select();
225225
if (!device) return nullptr;
226226
auto api = Create(argc, argv, device);
227-
if (api && checkFirmwareVersion(api))
228-
return api;
229-
return nullptr;
227+
return api;
228+
// if (api && checkFirmwareVersion(api))
229+
// return api;
230+
// return nullptr;
230231
}
231232

232233
std::shared_ptr<API> API::Create(

src/mynteye/api/version_checker.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ const char* PASS_DESCRIPTION = "pass";
3939
/**----device type-----sdk version---firmware version-----pass tag-----*/
4040
static const firmware_version_match_table_unit FSVM_TABLE[] ={
4141
/** S1030 */
42-
{"MYNT-EYE-S1030", ">2.3.0", "2.3.0", PASS_DESCRIPTION},
43-
{"MYNT-EYE-S1030", ">2.3.0", "2.2.2", PASS_DESCRIPTION},
42+
{"MYNT-EYE-S1030", ">2.3.0", ">2.2.0", PASS_DESCRIPTION},
4443
{"MYNT-EYE-S1030", ">2.3.0", "2.2.0", WARN_DESCRIPTION_F},
4544
{"MYNT-EYE-S1030", ">2.3.0", "<2.2.0", ERRO_DESCRIPTION_F},
4645
{"MYNT-EYE-S1030", "<2.3.1", "<2.2.0", WARN_DESCRIPTION_S},

0 commit comments

Comments
 (0)