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
11f1619e
"notes/git@git.ece.iastate.edu:jtfedd/coms327.git" did not exist on "5d1edf4096fdc934da5bd0016c4ed27badd4d14f"
Unverified
Commit
11f1619e
authored
8 years ago
by
Jake Drahos
Browse files
Options
Downloads
Patches
Plain Diff
Added frontend library
parent
6c7c8a8f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
groundStation/Makefile
+4
-1
4 additions, 1 deletion
groundStation/Makefile
groundStation/src/frontend/frontend_common.h
+9
-1
9 additions, 1 deletion
groundStation/src/frontend/frontend_common.h
with
13 additions
and
2 deletions
groundStation/Makefile
+
4
−
1
View file @
11f1619e
...
...
@@ -34,13 +34,16 @@ FECOBJECTS = $(FECSOURCES:$(FESRCDIR)/%.c=$(OBJDIR)/%.o)
OBJECTS
=
$(
CLIOBJECTS
)
$(
BECOBJECTS
)
$(
BECPPOBJECTS
)
$(
FECOBJECTS
)
# Default target
all
:
logs objdir backend cli $(SYMLINKS)
all
:
logs objdir backend cli $(SYMLINKS)
frontend.a
$(SYMLINKS)
:
$(CLIBINARY)
$(
foreach symlink,
$(
SYMLINKS
)
,
ln
-s
$(
CLIBINARY
)
$(
symlink
);)
vrpn
:
vrpn/build
frontend.a
:
$(FECOBJECTS)
ar rvs frontend.a
$(
wildcard
$(
OBJDIR
)
/frontend_
*
.o
)
cli
:
$(CLIOBJECTS) $(FECOBJECTS)
$(
GCC
)
$(
CFLAGS
)
$^
-o
$(
CLIBINARY
)
$(
INCLUDES
)
$(
LIBS
)
...
...
This diff is collapsed.
Click to expand it.
groundStation/src/frontend/frontend_common.h
+
9
−
1
View file @
11f1619e
...
...
@@ -2,6 +2,10 @@
#define __FRONTEND_COMMON_H
#include
<stdlib.h>
#ifdef __cplusplus
extern
"C"
{
#endif
struct
backend_conn
;
/* Start connection to quad */
...
...
@@ -19,4 +23,8 @@ char * ucart_backendGetline(struct backend_conn * conn);
/* Write a line to the backend */
int
ucart_backendWrite
(
struct
backend_conn
*
backend
,
const
char
*
line
);
#endif
/* __FRONTEND_COMMON_H */
\ No newline at end of file
#ifdef __cplusplus
}
#endif
#endif
/* __FRONTEND_COMMON_H */
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