Skip to content
Snippets Groups Projects
Commit 7da3ec62 authored by bbartels's avatar bbartels
Browse files

quad: Add docstring for hw_iface

parent 480a8f62
No related branches found
No related tags found
No related merge requests found
#ifndef HW_IFACE_H
#define HW_IFACE_H
/**
* Hardware Interfaces
*
* These interfaces are used to accomplish separation between the application
* layer and the hardware layer in the program that runs on the quadcopter.
*
* NOTE:
* If you wound up here after following some IDE function declaration trail,
* you've hit the end of the application layer. Go to the location of the
* hardware layer appropriate for your circumstance:p
* ../../xsdk_worksapce/modular_quad_pid -> running quad_app on the Zybo
* ../virt_quad -> running quad_app in a Unix environment
*/
struct I2CDriver {
void *state;
int (*reset)(struct I2CDriver *self);
......
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