2018-05-10 09:46:34 +03:00
|
|
|
// Copyright 2018 Slightech Co., Ltd. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2018-09-04 10:12:04 +03:00
|
|
|
#include "mynteye/logger.h"
|
2018-10-27 16:51:44 +03:00
|
|
|
#include "mynteye/api/api.h"
|
2018-05-03 11:40:09 +03:00
|
|
|
|
|
|
|
MYNTEYE_USE_NAMESPACE
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
auto &&api = API::Create(argc, argv);
|
2018-12-20 11:10:18 +02:00
|
|
|
if (!api) return 1;
|
2018-05-03 11:40:09 +03:00
|
|
|
|
|
|
|
LOG(INFO) << "Device name: " << api->GetInfo(Info::DEVICE_NAME);
|
|
|
|
LOG(INFO) << "Serial number: " << api->GetInfo(Info::SERIAL_NUMBER);
|
|
|
|
LOG(INFO) << "Firmware version: " << api->GetInfo(Info::FIRMWARE_VERSION);
|
|
|
|
LOG(INFO) << "Hardware version: " << api->GetInfo(Info::HARDWARE_VERSION);
|
|
|
|
LOG(INFO) << "Spec version: " << api->GetInfo(Info::SPEC_VERSION);
|
|
|
|
LOG(INFO) << "Lens type: " << api->GetInfo(Info::LENS_TYPE);
|
|
|
|
LOG(INFO) << "IMU type: " << api->GetInfo(Info::IMU_TYPE);
|
|
|
|
LOG(INFO) << "Nominal baseline: " << api->GetInfo(Info::NOMINAL_BASELINE);
|
2019-02-28 08:56:18 +02:00
|
|
|
LOG(INFO) << "Auxiliary chip version: "
|
|
|
|
<< api->GetInfo(Info::AUXILIARY_CHIP_VERSION);
|
2019-03-16 10:32:56 +02:00
|
|
|
LOG(INFO) << "Isp version: " << api->GetInfo(Info::ISP_VERSION);
|
2018-05-03 11:40:09 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|