Skip to content
Snippets Groups Projects
Commit e6ab8f52 authored by burneykb's avatar burneykb
Browse files

Investigating CLI segfault

parent 0f02b307
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment