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
81593831
Commit
81593831
authored
8 years ago
by
bbartels
Browse files
Options
Downloads
Patches
Plain Diff
quad: Add README
parent
ed1cf184
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
quad/README.md
+66
-0
66 additions, 0 deletions
quad/README.md
with
66 additions
and
0 deletions
quad/README.md
0 → 100644
+
66
−
0
View file @
81593831
# Quadcopter
The quad/ directory contains all code that programs the quadcopter. This
includes any C libraries we have written, any HDL to program the Zybo on
the quad, and the XSDK main project that runs on the Zybo.
The main quad application is written as a library, and located at:
```
src/quad_app/quad_app.c
```
The main XSDK project that actually runs on the Zybo is located at:
```
xsdk_workspace/modular_quad_pid/main.c
```
## Building
### Libraries
To build the libraries:
```
make libs
```
You can also build each library individually inside their respective project
directories:
```
cd src/<project> && make
```
### XSDK Project
To build the XSDK project that runs on the Zybo (only works on co3050):
```
make zybo
```
To build the Zybo boot image for the SD card (only works on co3050):
```
make boot
```
Disclaimer: The make boot target currently does not work
## Testing
### Libraries
We try to write unit tests for the libraries we've written, since they are
not tied to the Zybo platform and are able to be run in our CI environment.
```
make test
```
You can also run the test for specific library inside its respective project
directory:
```
cd src/<project> && make test
```
### XSDK Project
The XSDK project implements the hardware interfaces used in the quad app.
There are tests can be executed from the main function in that XSDK project.
These tests essentially test each hardware interface.
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