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
e77555a8
Commit
e77555a8
authored
May 27, 2019
by
15김건우
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use 2.0 api
parent
2a2b9e00
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
23 deletions
+54
-23
.gitignore
.gitignore
+1
-0
ardrone_testing_tool.c
Examples/Linux/custom_test/Sources/ardrone_testing_tool.c
+53
-23
No files found.
.gitignore
0 → 100644
View file @
e77555a8
.vscode
\ No newline at end of file
Examples/Linux/custom_test/Sources/ardrone_testing_tool.c
View file @
e77555a8
...
...
@@ -64,35 +64,65 @@ C_RESULT ardrone_tool_init_custom(void)
}
/* The delegate object calls this method every time in the event loop */
C_RESULT
ardrone_tool_update_custom
()
{
static
float
phi
=
0
f
,
theta
=
0
f
,
gaz
=
0
f
,
yaw
=
0
f
;
static
int
hover
=
0
,
yaw
_mode
=
0
;
C_RESULT
ardrone_tool_update_custom
()
{
static
float
phi
=
0
,
theta
=
0
,
gaz
=
0
,
yaw
=
0
,
psi
=
0
,
psi_accuracy
=
0
;
static
int
start
=
0
,
emergency
=
0
,
hover
=
0
,
yaw_mode
=
0
,
abs_ctrl
_mode
=
0
;
int
key
=
kbhit
();
#define _INC(_c, _v) case _c : _v += 0.1f; if ( _v > 1.0f) _v = 1.0f; break
#define _DEC(_c, _v) case _c : _v -= 0.1f; if ( _v < -1.0f) _v = -1.0f; break
switch
(
key
)
{
_INC
(
'q'
,
phi
);
_INC
(
'w'
,
theta
);
_INC
(
'e'
,
gaz
);
_INC
(
'r'
,
yaw
);
_DEC
(
'a'
,
phi
);
_DEC
(
's'
,
theta
);
_DEC
(
'd'
,
gaz
);
_DEC
(
'f'
,
yaw
);
case
'h'
:
hover
=
!
hover
;
break
;
case
'y'
:
yaw_mode
=
!
yaw_mode
;
break
;
default:
key
=
-
1
;
if
(
key
==
'1'
)
{
start
=
!
start
;
ardrone_tool_set_ui_pad_start
(
start
);
}
else
if
(
key
==
'2'
)
{
emergency
=
!
emergency
;
ardrone_tool_set_ui_pad_select
(
emergency
);
}
else
{
#define _INC(_c, _v) case _c : _v += 0.1f; if ( _v > 1.0f) _v = 1.0f; break
#define _DEC(_c, _v) case _c : _v -= 0.1f; if ( _v < -1.0f) _v = -1.0f; break
switch
(
key
)
{
_INC
(
'q'
,
phi
);
_INC
(
'w'
,
theta
);
_INC
(
'e'
,
gaz
);
_INC
(
'r'
,
yaw
);
_INC
(
't'
,
psi
);
_INC
(
'y'
,
psi_accuracy
);
_DEC
(
'a'
,
phi
);
_DEC
(
's'
,
theta
);
_DEC
(
'd'
,
gaz
);
_DEC
(
'f'
,
yaw
);
_DEC
(
'g'
,
psi
);
_DEC
(
'h'
,
psi_accuracy
);
case
'h'
:
hover
=
!
hover
;
break
;
case
'y'
:
yaw_mode
=
!
yaw_mode
;
break
;
default:
key
=
-
1
;
}
#undef _INC
#undef _DEC
if
(
key
!=
-
1
)
{
ardrone_tool_set_progressive_cmd
(
(
hover
?
1
:
0
)
|
(
yaw_mode
?
2
:
0
)
|
(
abs_ctrl_mode
?
4
:
0
),
phi
,
theta
,
gaz
,
yaw
,
psi
,
psi_accuracy
);
//ardrone_at_set_progress_cmd((hover? 1 : 0) | (yaw_mode? 2 : 0), phi, theta, gaz, yaw);
}
}
#undef _INC
#undef _DEC
if
(
key
!=
-
1
)
{
printf
(
"phi:%4.1f theta:%4.1f gaz:%4.1f yaw:%4.1f %s %s
\n
"
,
phi
,
theta
,
gaz
,
yaw
,
(
hover
?
"hover"
:
"_"
),
(
yaw_mode
?
"yaw_mode"
:
"_"
));
printf
(
" phi theta gaz yaw psi p_acc
\n
"
"%5.1f %5.1f %5.1f %5.1f %5.1f %5.1f%s%s%s%s%s
\n
"
,
phi
,
theta
,
gaz
,
yaw
,
psi
,
psi_accuracy
,
(
start
?
" / take-off"
:
" / land"
),
(
emergency
?
" / emergency"
:
""
),
(
hover
?
" / hovering"
:
""
),
(
yaw_mode
?
" / phi+yaw turn"
:
" / yaw turn"
),
(
abs_ctrl_mode
?
" / Absolute Control Mode"
:
""
)
);
}
ardrone_at_set_progress_cmd
((
hover
?
1
:
0
)
|
(
yaw_mode
?
2
:
0
),
phi
,
theta
,
gaz
,
yaw
);
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