summaryrefslogtreecommitdiff
path: root/software/avr.lib/usbio.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@mur.at>2013-02-16 23:42:27 +0000
committerChristian Pointner <equinox@mur.at>2013-02-16 23:42:27 +0000
commitfa273d5d157b817144385ee131586887c94d9b60 (patch)
tree1ba66457fb49c71842cd40fb1b1679428880d682 /software/avr.lib/usbio.h
parentadded bias pwm for RFPA 3800 power (diff)
upgraded avr buildroot
git-svn-id: https://svn.spreadspace.org/mur.sat@673 7de4ea59-55d0-425e-a1af-a3118ea81d4c
Diffstat (limited to 'software/avr.lib/usbio.h')
-rw-r--r--software/avr.lib/usbio.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/software/avr.lib/usbio.h b/software/avr.lib/usbio.h
new file mode 100644
index 0000000..cdc5bec
--- /dev/null
+++ b/software/avr.lib/usbio.h
@@ -0,0 +1,33 @@
+/*
+ * spreadspace avr utils
+ *
+ *
+ * Copyright (C) 2013 Christian Pointner <equinox@spreadspace.org>
+ * Othmar Gsenger <otti@wirdorange.org>
+ *
+ * This file is part of spreadspace avr utils.
+ *
+ * spreadspace avr utils is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * spreadspace avr utils is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with spreadspace avr utils. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef SPREADAVR_usbio_h_INCLUDED
+#define SPREADAVR_usbio_h_INCLUDED
+
+#include <stdint.h>
+
+void usbio_init(void);
+void usbio_task(void);
+int16_t usbio_bytes_received(void);
+
+#endif