Skip to content

Commit 4c8d43f

Browse files
author
Rohit Sant
committed
OSDK 3.3
1 parent 4b323f0 commit 4c8d43f

File tree

136 files changed

+32183
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+32183
-0
lines changed

.clang-format

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
BasedOnStyle: Mozilla
2+
Standard: Cpp03
3+
AlignAfterOpenBracket: Align
4+
AlignConsecutiveAssignments: true
5+
AlignConsecutiveDeclarations: true
6+
AllowShortFunctionsOnASingleLine: false
7+
AllowShortIfStatementsOnASingleLine: false
8+
AllowShortLoopsOnASingleLine: false
9+
BreakBeforeBraces: Allman

.gitignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
*.o
2+
*~
3+
osdk-core/cmake-modules/DJIOSDKConfig.cmake
4+
osdk-core/cmake-modules/DJIOSDKConfigVersion.cmake
5+
lib/build-DJI_onboardSDK-Desktop_Qt_5_4_2_MinGW_32bit-Debug/
6+
Onboard_SDK_Lib/build-DJI_onboardSDK-Desktop_Qt_5_4_2_MinGW_32bit-Debug/
7+
sample/STM32/MDK/Objects/
8+
sample/STM32/MDK/Listings/
9+
sample/Windows/Windows12/DJIonboardSDK/DJIonboardSDK/Debug/
10+
sample/PureQT/build-onboardSDK-Desktop_Qt_5_4_2_MinGW_32bit-Debug/
11+
sample/PureQT/build-onboardSDK-Desktop_Qt_5_4_2_MinGW_32bit-Release/
12+
sample/PureQT/build-onboardSDK-Desktop_Qt5_5_1_MSVC12_64bit-Debug/
13+
sample/PureQT/build-onboardSDK-Desktop_Qt5_5_1_MSVC12_64bit-Release/
14+
sample/PureQT/build-onboardSDK-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug/
15+
sample/PureQT/build-onboardSDK-Desktop_Qt_5_5_1_MSVC2013_64bit-Release/
16+
sample/PureQT/build-onboardSDK-Desktop_Qt_5_5_1_MSVC2012_32bit-Debug/
17+
sample/PureQT/build-onboardSDK-5_5_1Mingw-Release/
18+
sample/PureQT/build-onboardSDK-msvc2013-Release/
19+
sample/PureQT/build-onboardSDK-5_5_1Mingw-Debug/
20+
sample/PureQT/build-onboardSDK-msvc2013-Debug/
21+
sample/PureQT/build-onboardSDK-*
22+
sample/PureQT/onboardSDK/onboardSDK.pro.user
23+
24+
sample/commandline/build-conboardSDK-5_5_1Mingw-Debug/
25+
sample/commandline/build-conboardSDK-5_5_1Mingw-Release/
26+
sample/commandline/build-conboardSDK-msvc2013-Release/
27+
sample/commandline/build-conboardSDK-msvc2013-Debug/
28+
29+
sample/Linux/bin
30+
sample/commandline/Linux/bin/onboardSDK
31+
sample/commandline/build-conboardSDK-Desktop_Qt_5_4_2_MinGW_32bit-Debug/
32+
33+
sample/STM32/OnBoardSDK_STM32/Project/Objects/
34+
sample/STM32/OnBoardSDK_STM32/Project/OnBoardSDK_STM32.uvguix.*
35+
sample/STM32/OnBoardSDK_STM32/Project/Listings
36+
sample/STM32/OnBoardSDK_STM32/Project/DebugConfig
37+
38+
sample/Linux/bin/onboardSDK
39+
40+
*.sw*
41+
tags
42+
/.cproject
43+
/.project
44+
45+
.vagrant/
46+
.idea/
47+
bin/
48+
build/
49+
CMakeFiles/
50+
CMakeCache.txt
51+
cmake_install.cmake
52+
Makefile

CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
cmake_minimum_required(VERSION 2.8)
2+
project(onboardsdk)
3+
4+
set(CMAKE_VERBOSE_MAKEFILE OFF)
5+
6+
set(DJIOSDK 0)
7+
set(DJIOSDK_MINOR_VERSION 1)
8+
set(DJIOSDK_PATCH_VERSION 0)
9+
set(DJIOSDK_VERSION
10+
${DJIOSDK_MAJOR_VERSION}.${DJIOSDK_MINOR_VERSION}.${DJIOSDK_PATCH_VERSION})
11+
12+
if (${CMAKE_SYSTEM_NAME} MATCHES Linux)
13+
add_subdirectory(sample/linux)
14+
endif()

0 commit comments

Comments
 (0)