Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MicroCART
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Distributed Autonomous Networked Control Lab
MicroCART
Commits
e6ab8f52
Commit
e6ab8f52
authored
8 years ago
by
burneykb
Browse files
Options
Downloads
Patches
Plain Diff
Investigating CLI segfault
parent
0f02b307
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
groundStation/src/backend/vrpn_tracker.hpp
+12
-12
12 additions, 12 deletions
groundStation/src/backend/vrpn_tracker.hpp
groundStation/src/cli/README.md
+7
-0
7 additions, 0 deletions
groundStation/src/cli/README.md
with
19 additions
and
12 deletions
groundStation/src/backend/vrpn_tracker.hpp
+
12
−
12
View file @
e6ab8f52
...
...
@@ -23,13 +23,13 @@ extern "C"
#endif
struct
ucart_vrpn_tracker
;
struct
ucart_vrpn_TrackerData
{
double
x
;
double
y
;
double
z
;
float
x
;
float
y
;
float
z
;
double
pitch
;
double
roll
;
double
yaw
;
float
pitch
;
float
roll
;
float
yaw
;
double
fps
;
struct
timeval
timestamp
;
...
...
@@ -55,13 +55,13 @@ namespace microcart
{
struct
TrackerData
{
public:
double
x
;
double
y
;
double
z
;
float
x
;
float
y
;
float
z
;
double
pitch
;
double
roll
;
double
yaw
;
float
pitch
;
float
roll
;
float
yaw
;
double
fps
;
timeval
timestamp
;
...
...
This diff is collapsed.
Click to expand it.
groundStation/src/cli/README.md
0 → 100644
+
7
−
0
View file @
e6ab8f52
# CLI
## Usage
The Cli has been designed to function similarly to command line programs. Run the program using ./Cli
To run a specific command in the
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment