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
a601adff
Commit
a601adff
authored
Jun 17, 2019
by
Chae Ho Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uhyo~ cho rakii daze~!
parent
9b1aa41d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
control.c
Examples/Linux/drone_control/Sources/control.c
+14
-0
navdata.c
Examples/Linux/drone_control/Sources/navdata.c
+5
-0
No files found.
Examples/Linux/drone_control/Sources/control.c
View file @
a601adff
...
...
@@ -57,6 +57,9 @@ void convert_coordinates_to_commands(MTVec3D original, MTVec3D destination)
// increased gaz -> drone floats upwards (+z direction)
// just let the drone hover if it's within around 30 centimeters from the position it's supposed to be
{
int
xflag
=
0
;
int
yflag
=
0
;
int
zflag
=
0
;
#define _INC(_v) controller_state. _v = 0.5f
#define _DEC(_v) controller_state. _v = -0.5f
#define _SET(_v) controller_state. _v = 0.0f;
...
...
@@ -70,6 +73,7 @@ void convert_coordinates_to_commands(MTVec3D original, MTVec3D destination)
else
{
_SET
(
phi
);
xflag
=
1
;
}
if
(
abs
((
int
)(
original
.
y
-
destination
.
y
))
>
30
)
{
...
...
@@ -81,6 +85,7 @@ void convert_coordinates_to_commands(MTVec3D original, MTVec3D destination)
else
{
_SET
(
phi
);
yflag
=
1
;
}
if
(
abs
((
int
)(
original
.
z
-
destination
.
z
))
>
30
)
{
...
...
@@ -92,9 +97,18 @@ void convert_coordinates_to_commands(MTVec3D original, MTVec3D destination)
else
{
_SET
(
gaz
);
zflag
=
1
;
}
#undef _INC
#undef _DEC
if
(
xflag
&&
yflag
&&
zflag
)
{
controller_state
.
hover_mode
=
0
;
}
else
{
controller_state
.
hover_mode
=
1
;
}
};
...
...
Examples/Linux/drone_control/Sources/navdata.c
View file @
a601adff
...
...
@@ -37,6 +37,11 @@ inline C_RESULT demo_navdata_client_process( const navdata_unpacked_t* const nav
printf
(
"gyrometer: [x] %4.3f [y] %4.3f [z] %4.3f
\n
"
,
bt_data
.
gyro_x
,
bt_data
.
gyro_y
,
bt_data
.
gyro_z
);
printf
(
"scroll: [x] %4.3f [y] %4.3f / click: %i
\n
"
,
bt_data
.
scroll_x
,
bt_data
.
scroll_y
,
bt_data
.
click
);
controller_state
.
droneglobalcoord
.
z
=
nd
->
altitude
;
controller_state
.
droneglobalcoord
.
x
+=
nd
->
vx
*
20
*
0
.
001
// assume nd->theta is in radians, and nd->vx is m/s
controller_state
.
droneglobalcoord
.
y
+=
nd
->
vy
*
20
*
0
.
001
// assume nd-> phi is in radians, and nd->vy is m/s
return
C_OK
;
}
...
...
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