diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-18 05:22:57 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-18 05:22:57 +0000 |
commit | 3b3ea167f01d24cddc2b59453a000969a42d2234 (patch) | |
tree | eb6a4ef86348df4c0ae5558a45ca1f9e7d83060f /Projects/LEDNotifier/HotmailNotifier.h | |
parent | 3d6508c9b9505cb3393b7c12df1a0c87f7828bbe (diff) | |
download | lufa-3b3ea167f01d24cddc2b59453a000969a42d2234.tar.gz lufa-3b3ea167f01d24cddc2b59453a000969a42d2234.tar.bz2 lufa-3b3ea167f01d24cddc2b59453a000969a42d2234.zip |
Renamed HotmailNotifier project to LEDNotifier.
Diffstat (limited to 'Projects/LEDNotifier/HotmailNotifier.h')
-rw-r--r-- | Projects/LEDNotifier/HotmailNotifier.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/Projects/LEDNotifier/HotmailNotifier.h b/Projects/LEDNotifier/HotmailNotifier.h new file mode 100644 index 000000000..6ec85c115 --- /dev/null +++ b/Projects/LEDNotifier/HotmailNotifier.h @@ -0,0 +1,59 @@ +/*
+ LUFA Library
+ Copyright (C) Dean Camera, 2009.
+
+ dean [at] fourwalledcubicle [dot] com
+ www.fourwalledcubicle.com
+*/
+
+/*
+ Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
+
+ Permission to use, copy, modify, and distribute this software
+ and its documentation for any purpose and without fee is hereby
+ granted, provided that the above copyright notice appear in all
+ copies and that both that the copyright notice and this
+ permission notice and warranty disclaimer appear in supporting
+ documentation, and that the name of the author not be used in
+ advertising or publicity pertaining to distribution of the
+ software without specific, written prior permission.
+
+ The author disclaim all warranties with regard to this
+ software, including all implied warranties of merchantability
+ and fitness. In no event shall the author be liable for any
+ special, indirect or consequential damages or any damages
+ whatsoever resulting from loss of use, data or profits, whether
+ in an action of contract, negligence or other tortious action,
+ arising out of or in connection with the use or performance of
+ this software.
+*/
+
+/** \file
+ *
+ * Header file for HotmailNotifier.c.
+ */
+
+#ifndef _HOTMAILNOTIFIER_H_
+#define _HOTMAILNOTIFIER_H_
+
+ /* Includes: */
+ #include <avr/io.h>
+ #include <avr/wdt.h>
+ #include <avr/power.h>
+ #include <string.h>
+ #include <stdio.h>
+
+ #include "Descriptors.h"
+
+ #include <LUFA/Version.h>
+ #include <LUFA/Drivers/Board/LEDs.h>
+ #include <LUFA/Drivers/USB/USB.h>
+ #include <LUFA/Drivers/USB/Class/CDC.h>
+
+ /* Function Prototypes: */
+ void SetupHardware(void);
+
+ void EVENT_USB_Device_ConfigurationChanged(void);
+ void EVENT_USB_Device_UnhandledControlRequest(void);
+
+#endif
|