Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
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
Valentin Platzgummer
qgroundcontrol
Commits
a5f7a9e8
Commit
a5f7a9e8
authored
Nov 05, 2013
by
Lorenz Meier
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:mavlink/qgroundcontrol into config
parents
18149033
d36eca90
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
438 additions
and
365 deletions
+438
-365
GAudioOutput.cc
src/GAudioOutput.cc
+395
-352
GAudioOutput.h
src/GAudioOutput.h
+25
-9
MAVLinkProtocol.cc
src/comm/MAVLinkProtocol.cc
+14
-0
QGCComboBox.h
src/ui/designer/QGCComboBox.h
+1
-1
QGCCommandButton.h
src/ui/designer/QGCCommandButton.h
+1
-1
QGCParamSlider.h
src/ui/designer/QGCParamSlider.h
+1
-1
QGCTextLabel.h
src/ui/designer/QGCTextLabel.h
+1
-1
No files found.
src/GAudioOutput.cc
View file @
a5f7a9e8
This diff is collapsed.
Click to expand it.
src/GAudioOutput.h
View file @
a5f7a9e8
...
...
@@ -59,10 +59,21 @@ This file is part of the PIXHAWK project
extern
"C"
{
cst_voice
*
REGISTER_VOX
(
const
char
*
voxdir
);
void
UNREGISTER_VOX
(
cst_voice
*
vox
);
cst_voice
*
register_cmu_us_kal16
(
const
char
*
voxdir
);
cst_voice
*
register_cmu_us_kal16
(
const
char
*
voxdir
);
}
#endif
#if _MSC_VER
// Documentation: http://msdn.microsoft.com/en-us/library/ee125082%28v=VS.85%29.aspx
#define _ATL_APARTMENT_THREADED
#include <atlbase.h>
//You may derive a class from CComModule and use it if you want to override something,
//but do not change the name of _Module
extern
CComModule
_Module
;
#include <atlcom.h>
#include <sapi.h>
#endif
/**
* @brief Audio Output (speech synthesizer and "beep" output)
* This class follows the singleton design pattern
...
...
@@ -73,10 +84,11 @@ class GAudioOutput : public QObject
Q_OBJECT
public:
/** @brief Get the singleton instance */
static
GAudioOutput
*
instance
();
static
GAudioOutput
*
instance
();
/** @brief List available voices */
QStringList
listVoices
(
void
);
enum
{
enum
{
VOICE_MALE
=
0
,
VOICE_FEMALE
}
QGVoice
;
...
...
@@ -86,7 +98,7 @@ public:
public
slots
:
/** @brief Say this text if current output priority matches */
bool
say
(
QString
text
,
int
severity
=
1
);
bool
say
(
QString
text
,
int
severity
=
1
);
/** @brief Play alert sound and say notification message */
bool
alert
(
QString
text
);
/** @brief Start emergency sound */
...
...
@@ -115,16 +127,20 @@ protected:
#endif
#ifdef Q_OS_LINUX
//cst_voice* voice; ///< The flite voice object
#endif
#ifdef _MSC_VER
static
ISpVoice
*
pVoice
;
#endif
int
voiceIndex
;
///< The index of the flite voice to use (awb, slt, rms)
Phonon
::
MediaObject
*
m_media
;
///< The output object for audio
Phonon
::
AudioOutput
*
m_audioOutput
;
Phonon
::
MediaObject
*
m_media
;
///< The output object for audio
Phonon
::
AudioOutput
*
m_audioOutput
;
bool
emergency
;
///< Emergency status flag
QTimer
*
emergencyTimer
;
QTimer
*
emergencyTimer
;
bool
muted
;
private:
GAudioOutput
(
QObject
*
parent
=
NULL
);
//
~GAudioOutput();
GAudioOutput
(
QObject
*
parent
=
NULL
);
~
GAudioOutput
();
};
#endif // AUDIOOUTPUT_H
src/comm/MAVLinkProtocol.cc
View file @
a5f7a9e8
...
...
@@ -268,6 +268,20 @@ void MAVLinkProtocol::receiveBytes(LinkInterface* link, QByteArray b)
if
(
decodeState
==
1
)
{
decodedFirstPacket
=
true
;
if
(
message
.
msgid
==
MAVLINK_MSG_ID_PING
)
{
// process ping requests (tgt_system and tgt_comp must be zero)
mavlink_ping_t
ping
;
mavlink_msg_ping_decode
(
&
message
,
&
ping
);
if
(
!
ping
.
target_system
&&
!
ping
.
target_component
)
{
mavlink_message_t
msg
;
mavlink_msg_ping_pack
(
getSystemId
(),
getComponentId
(),
&
msg
,
ping
.
time_usec
,
ping
.
seq
,
message
.
sysid
,
message
.
compid
);
sendMessage
(
msg
);
}
}
#if defined(QGC_PROTOBUF_ENABLED)
if
(
message
.
msgid
==
MAVLINK_MSG_ID_EXTENDED_MESSAGE
)
...
...
src/ui/designer/QGCComboBox.h
View file @
a5f7a9e8
...
...
@@ -22,7 +22,7 @@ public:
explicit
QGCComboBox
(
QWidget
*
parent
=
0
);
~
QGCComboBox
();
virtual
void
setEditMode
(
bool
editMode
)
override
;
virtual
void
setEditMode
(
bool
editMode
);
public
slots
:
/** @brief Queue parameter for sending to the MAV (add to pending list)*/
...
...
src/ui/designer/QGCCommandButton.h
View file @
a5f7a9e8
...
...
@@ -18,7 +18,7 @@ public:
explicit
QGCCommandButton
(
QWidget
*
parent
=
0
);
~
QGCCommandButton
();
virtual
void
setEditMode
(
bool
editMode
)
override
;
virtual
void
setEditMode
(
bool
editMode
);
public
slots
:
void
sendCommand
();
...
...
src/ui/designer/QGCParamSlider.h
View file @
a5f7a9e8
...
...
@@ -20,7 +20,7 @@ public:
explicit
QGCParamSlider
(
QWidget
*
parent
=
0
);
~
QGCParamSlider
();
virtual
void
setEditMode
(
bool
editMode
)
override
;
virtual
void
setEditMode
(
bool
editMode
);
public
slots
:
/** @brief Queue parameter for sending to the MAV (add to pending list)*/
...
...
src/ui/designer/QGCTextLabel.h
View file @
a5f7a9e8
...
...
@@ -19,7 +19,7 @@ public:
~
QGCTextLabel
();
void
setActiveUAS
(
UASInterface
*
uas
);
void
enableText
(
int
num
);
virtual
void
setEditMode
(
bool
editMode
)
override
;
virtual
void
setEditMode
(
bool
editMode
);
public
slots
:
void
writeSettings
(
QSettings
&
settings
);
void
readSettings
(
const
QSettings
&
settings
);
...
...
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