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
19f494cd
Commit
19f494cd
authored
Jan 03, 2011
by
pixhawk
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of pixhawk.ethz.ch:qgroundcontrol into dev
parents
1412cb1a
73b9e202
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
8 deletions
+31
-8
qgroundcontrol_installer.nsi
deploy/qgroundcontrol_installer.nsi
+8
-8
win_qextserialport.h
src/lib/qextserialport/win_qextserialport.h
+10
-0
UAS.cc
src/uas/UAS.cc
+13
-0
No files found.
deploy/qgroundcontrol_installer.nsi
View file @
19f494cd
...
...
@@ -16,20 +16,20 @@ LicenseData ..\license.txt
Section ""
SetOutPath $INSTDIR
File
qgroundcontrol
\*.*
WriteUninstaller $INSTDIR\QGround
c
ontrol_uninstall.exe
File
..\release
\*.*
WriteUninstaller $INSTDIR\QGround
C
ontrol_uninstall.exe
SectionEnd
Section "Uninstall"
Delete $INSTDIR\QGround
c
ontrol_uninstall.exe
Delete $INSTDIR\QGround
C
ontrol_uninstall.exe
Delete $INSTDIR\*.*
RMDir $INSTDIR
Delete "$SMPROGRAMS\QGround
c
ontrol\*.*"
RMDir "$SMPROGRAMS\QGround
c
ontrol\"
Delete "$SMPROGRAMS\QGround
C
ontrol\*.*"
RMDir "$SMPROGRAMS\QGround
C
ontrol\"
SectionEnd
Section "create Start Menu Shortcuts"
CreateDirectory "$SMPROGRAMS\QGround
c
ontrol"
CreateShortCut "$SMPROGRAMS\QGround
control\uninstall.lnk" "$INSTDIR\QGroundcontrol_uninstall.exe" "" "$INSTDIR\QGroundc
ontrol_uninstall.exe" 0
CreateShortCut "$SMPROGRAMS\QGround
control\QGroundc
ontrol.lnk" "$INSTDIR\qgroundcontrol.exe" "" "$INSTDIR\qgroundcontrol.exe" 0
CreateDirectory "$SMPROGRAMS\QGround
C
ontrol"
CreateShortCut "$SMPROGRAMS\QGround
Control\uninstall.lnk" "$INSTDIR\QGroundControl_uninstall.exe" "" "$INSTDIR\QGroundC
ontrol_uninstall.exe" 0
CreateShortCut "$SMPROGRAMS\QGround
Control\QGroundC
ontrol.lnk" "$INSTDIR\qgroundcontrol.exe" "" "$INSTDIR\qgroundcontrol.exe" 0
SectionEnd
\ No newline at end of file
src/lib/qextserialport/win_qextserialport.h
View file @
19f494cd
...
...
@@ -5,6 +5,16 @@
#include <windows.h>
#include <QThread>
/* These baudrates work on windows, but are not part of the windows headers */
#ifndef CBR_230400
#define CBR_230400 230400
#endif
#ifndef CBR_460800
#define CBR_460800 460800
#endif
#ifndef CBR_921600
#define CBR_921600 921600
#endif
/*if all warning messages are turned off, flag portability warnings to be turned off as well*/
#ifdef _TTY_NOWARN_
...
...
src/uas/UAS.cc
View file @
19f494cd
...
...
@@ -26,6 +26,19 @@
#include "LinkManager.h"
#include "SerialLink.h"
#ifndef M_PI
#define M_PI 3.14159265358979323846
/* pi */
#endif
#ifndef M_PI_2
#define M_PI_2 1.57079632679489661923
/* pi/2 */
#endif
#ifndef M_PI_4
#define M_PI_4 0.78539816339744830962
/* pi/4 */
#endif
UAS
::
UAS
(
MAVLinkProtocol
*
protocol
,
int
id
)
:
UASInterface
(),
uasId
(
id
),
...
...
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