Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ARDrone-SDK
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
just-drone
ARDrone-SDK
Commits
7592ef31
Commit
7592ef31
authored
Jun 16, 2019
by
15김건우
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor project structure
parent
17d90c75
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
6 additions
and
5 deletions
+6
-5
Makefile
Examples/Linux/drone_control/Build/Makefile
+6
-5
bt_connect.c
Examples/Linux/drone_control/Sources/bt_connect.c
+0
-0
bt_connect.h
Examples/Linux/drone_control/Sources/bt_connect.h
+0
-0
control.c
Examples/Linux/drone_control/Sources/control.c
+0
-0
control.h
Examples/Linux/drone_control/Sources/control.h
+0
-0
main.c
Examples/Linux/drone_control/Sources/main.c
+0
-0
navdata.c
Examples/Linux/drone_control/Sources/navdata.c
+0
-0
navdata.h
Examples/Linux/drone_control/Sources/navdata.h
+0
-0
video_stage.c
Examples/Linux/drone_control/Sources/video_stage.c
+0
-0
video_stage.h
Examples/Linux/drone_control/Sources/video_stage.h
+0
-0
No files found.
Examples/Linux/
custom_test
/Build/Makefile
→
Examples/Linux/
drone_control
/Build/Makefile
View file @
7592ef31
...
...
@@ -23,10 +23,11 @@ SRC_DIR:=$(shell pwd)/../Sources
# Define application source files
GENERIC_BINARIES_SOURCE_DIR
:=
$(SRC_DIR)
GENERIC_BINARIES_COMMON_SOURCE_FILES
+=
\
Navdata/navdata.c
\
Video/video_stage.c
\
Control/control.c
GENERIC_BINARIES_COMMON_SOURCE_FILES
+=
\
navdata.c
\
video_stage.c
\
control.c
\
bt_connect.c
GENERIC_INCLUDES
+=
\
$(SRC_DIR)
\
...
...
@@ -44,7 +45,7 @@ GENERIC_BINARIES_SOURCE_ENTRYPOINTS+= \
GENERIC_INCLUDES
:=
$
(
addprefix
-I
,
$(GENERIC_INCLUDES)
)
GENERIC_LIB_PATHS
=
-L
$(GENERIC_TARGET_BINARIES_DIR)
GENERIC_LIBS
=
-lpc_ardrone
-lgtk-x11-2
.0
-lrt
GENERIC_LIBS
=
-lpc_ardrone
-lgtk-x11-2
.0
-lrt
-lbluetooth
SDK_FLAGS
+=
"USE_APP=yes"
SDK_FLAGS
+=
"APP_ID=drone_control"
...
...
Examples/Linux/drone_control/Sources/bt_connect.c
0 → 100644
View file @
7592ef31
Examples/Linux/drone_control/Sources/bt_connect.h
0 → 100644
View file @
7592ef31
Examples/Linux/
custom_test/Sources/Control
/control.c
→
Examples/Linux/
drone_control/Sources
/control.c
View file @
7592ef31
File moved
Examples/Linux/
custom_test/Sources/Control
/control.h
→
Examples/Linux/
drone_control/Sources
/control.h
View file @
7592ef31
File moved
Examples/Linux/
custom_test
/Sources/main.c
→
Examples/Linux/
drone_control
/Sources/main.c
View file @
7592ef31
File moved
Examples/Linux/
custom_test/Sources/Navdata
/navdata.c
→
Examples/Linux/
drone_control/Sources
/navdata.c
View file @
7592ef31
File moved
Examples/Linux/
custom_test/Sources/Navdata
/navdata.h
→
Examples/Linux/
drone_control/Sources
/navdata.h
View file @
7592ef31
File moved
Examples/Linux/
custom_test/Sources/Video
/video_stage.c
→
Examples/Linux/
drone_control/Sources
/video_stage.c
View file @
7592ef31
File moved
Examples/Linux/
custom_test/Sources/Video
/video_stage.h
→
Examples/Linux/
drone_control/Sources
/video_stage.h
View file @
7592ef31
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment