parent
22b04429e6
commit
bc8e686e51
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Adafruit U4 Breakout board. |
||||||
|
* \copydetails Group_BoardInfo_ADAFRUITU4 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_ADAFRUITU4 ADAFRUITU4 |
||||||
|
* \brief Board specific information header for the Adafruit U4 Breakout board. |
||||||
|
* |
||||||
|
* Board specific information header for the Adafruit U4 Breakout board (http://ladyada.net/products/atmega32u4breakout).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_ADAFRUITU4_H__ |
||||||
|
#define __BOARD_ADAFRUITU4_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel ATAVRUSBRF01. |
||||||
|
* \copydetails Group_BoardInfo_ATAVRUSBRF01 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_ATAVRUSBRF01 ATAVRUSBRF01 |
||||||
|
* \brief Board specific information header for the Atmel ATAVRUSBRF01. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel ATAVRUSBRF01. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_ATAVRUSBRF01_H__ |
||||||
|
#define __BOARD_ATAVRUSBRF01_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Tempusdictum Benito. |
||||||
|
* \copydetails Group_BoardInfo_BENITO |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_BENITO BENITO |
||||||
|
* \brief Board specific information header for the Tempusdictum Benito. |
||||||
|
* |
||||||
|
* Board specific information header for the Tempusdictum Benito (http://dorkbotpdx.org/wiki/benito).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_BENITO_H__ |
||||||
|
#define __BOARD_BENITO_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Bitwizard Big-Multio. |
||||||
|
* \copydetails Group_BoardInfo_BIGMULTIO |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_BIGMULTIO BIGMULTIO |
||||||
|
* \brief Board specific information header for the Bitwizard Big-Multio. |
||||||
|
* |
||||||
|
* Board specific information header for the Bitwizard Big-Multio (http://www.bitwizard.nl/wiki/index.php/Usbbigmultio).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_BIGMULTIO_H__ |
||||||
|
#define __BOARD_BIGMULTIO_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the BLACKCAT USB JTAG. |
||||||
|
* \copydetails Group_BoardInfo_BLACKCAT |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_BLACKCAT BLACKCAT |
||||||
|
* \brief Board specific information header for the BLACKCAT USB JTAG. |
||||||
|
* |
||||||
|
* Board specific information header for the TCNISO Blackcat USB JTAG (http://www.embeddedcomputers.net/products/BlackcatUSB).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_BLACKCAT_H__ |
||||||
|
#define __BOARD_BLACKCAT_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Busware BUI. |
||||||
|
* \copydetails Group_BoardInfo_BUI |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_BUI BUI |
||||||
|
* \brief Board specific information header for the Busware BUI. |
||||||
|
* |
||||||
|
* Board specific information header for the Busware BUI (http://www.busware.de/tiki-index.php?page=BUI).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_BUI_H__ |
||||||
|
#define __BOARD_BUI_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,86 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Fletchtronics BUMBLEB. |
||||||
|
* \copydetails Group_BoardInfo_BUMBLEB |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_BUMBLEB BUMBLEB |
||||||
|
* \brief Board specific information header for the Fletchtronics BUMBLEB. |
||||||
|
* |
||||||
|
* Board specific information header for the Fletchtronics BUMBLEB (http://fletchtronics.net/bumble-b).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_BUMBLEB_H__ |
||||||
|
#define __BOARD_BUMBLEB_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Joystick.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Joystick mounted. */ |
||||||
|
#define BOARD_HAS_JOYSTICK |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Busware CUL V3. |
||||||
|
* \copydetails Group_BoardInfo_CULV3 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_CULV3 CULV3 |
||||||
|
* \brief Board specific information header for the Busware CUL V3. |
||||||
|
* |
||||||
|
* Board specific information header for the Busware CUL V3 (http://busware.de/tiki-index.php?page=CUL).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_CULV3_H__ |
||||||
|
#define __BOARD_CULV3_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the DorkbotPDX Duce. |
||||||
|
* \copydetails Group_BoardInfo_DUCE |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_DUCE DUCE |
||||||
|
* \brief Board specific information header for the DorkbotPDX Duce. |
||||||
|
* |
||||||
|
* Board specific information header for the DorkbotPDX Duce (http://dorkbotpdx.org/wiki/duce).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_DUCE_H__ |
||||||
|
#define __BOARD_DUCE_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,90 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel EVK527. |
||||||
|
* \copydetails Group_BoardInfo_EVK527 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_EVK527 EVK527 |
||||||
|
* \brief Board specific information header for the Atmel EVK527. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel EVK527. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_EVK527_H__ |
||||||
|
#define __BOARD_EVK527_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Dataflash.h" |
||||||
|
#include "../../Joystick.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Dataflash mounted. */ |
||||||
|
#define BOARD_HAS_DATAFLASH |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Joystick mounted. */ |
||||||
|
#define BOARD_HAS_JOYSTICK |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Mattairtech JM-DB-U2. |
||||||
|
* \copydetails Group_BoardInfo_JMDBU2 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_JMDBU2 JMDBU2 |
||||||
|
* \brief Board specific information header for the Mattairtech JM-DB-U2. |
||||||
|
* |
||||||
|
* Board specific information header for the Mattairtech JM-DB-U2 (http://u2.mattair.net/index.html).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_JMDBU2_H__ |
||||||
|
#define __BOARD_JMDBU2_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Arduino Leonardo board. |
||||||
|
* \copydetails Group_BoardInfo_LEONDARDO |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_LEONDARDO LEONDARDO |
||||||
|
* \brief Board specific information header for the Arduino Leonardo board. |
||||||
|
* |
||||||
|
* Board specific information header for the Arduino Leonardo board (http://arduino.cc/en/Main/arduinoBoardLeonardo).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_LEONDARDO_H__ |
||||||
|
#define __BOARD_LEONDARDO_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Maximus board. |
||||||
|
* \copydetails Group_BoardInfo_MAXIMUS |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MAXIMUS MAXIMUS |
||||||
|
* \brief Board specific information header for the Maximus board. |
||||||
|
* |
||||||
|
* Board specific information header for the Maximus (http://www.avrusb.com/).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_MAXIMUS_H__ |
||||||
|
#define __BOARD_MAXIMUS_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,149 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Micropendous series boards. |
||||||
|
* \copydetails Group_BoardInfo_MICROPENDOUS_32U2 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_A MICROPENDOUS_A |
||||||
|
* \brief Board specific information header for the Micropendous A (https://code.google.com/p/micropendous/wiki/MicropendousA).
|
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_MICROPENDOUS_32U2 for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_1 MICROPENDOUS_1 |
||||||
|
* \brief Board specific information header for the Micropendous 1 (https://code.google.com/p/micropendous/wiki/Micropendous1).
|
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_MICROPENDOUS_32U2 for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_2 MICROPENDOUS_2 |
||||||
|
* \brief Board specific information header for the Micropendous 2 (https://code.google.com/p/micropendous/wiki/Micropendous2).
|
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_MICROPENDOUS_32U2 for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_3 MICROPENDOUS_3 |
||||||
|
* \brief Board specific information header for the Micropendous 3 (https://code.google.com/p/micropendous/wiki/Micropendous3).
|
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_MICROPENDOUS_32U2 for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_4 MICROPENDOUS_4 |
||||||
|
* \brief Board specific information header for the Micropendous 4 (https://code.google.com/p/micropendous/wiki/Micropendous4).
|
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_MICROPENDOUS_32U2 for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_DIP MICROPENDOUS_DIP |
||||||
|
* \brief Board specific information header for the Micropendous DIP (https://code.google.com/p/micropendous/wiki/MicropendousDIP).
|
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_MICROPENDOUS_32U2 for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_REV1 MICROPENDOUS_REV1 |
||||||
|
* \brief Board specific information header for the Micropendous Arduino-like Revision 1 (https://code.google.com/p/micropendous/wiki/Micropendous).
|
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_MICROPENDOUS_32U2 for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_REV2 MICROPENDOUS_REV2 |
||||||
|
* \brief Board specific information header for the Micropendous Arduino-like Revision 2 (https://code.google.com/p/micropendous/wiki/Micropendous).
|
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_MICROPENDOUS_32U2 for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROPENDOUS_32U2 MICROPENDOUS_32U2 |
||||||
|
* \brief Board specific information header for the Micropendous series boards. |
||||||
|
* |
||||||
|
* Board specific information header for the Micropendous series boards (https://code.google.com/p/micropendous).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_MICROPENDOUS_H__ |
||||||
|
#define __BOARD_MICROPENDOUS_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
#if ((BOARD == BOARD_MICROPENDOUS_32U2) || (BOARD == BOARD_MICROPENDOUS_A) || \ |
||||||
|
(BOARD == BOARD_MICROPENDOUS_1) || (BOARD == BOARD_MICROPENDOUS_2) || \
|
||||||
|
(BOARD == BOARD_MICROPENDOUS_3) || (BOARD == BOARD_MICROPENDOUS_4) || \
|
||||||
|
(BOARD == BOARD_MICROPENDOUS_REV1) || (BOARD == BOARD_MICROPENDOUS_REV2) || \
|
||||||
|
(BOARD == BOARD_MICROPENDOUS_DIP) || definied(__DOXYGEN__)) |
||||||
|
#include "../../Buttons.h" |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
#endif |
||||||
|
|
||||||
|
#if ((BOARD == BOARD_MICROPENDOUS_REV1) || (BOARD == BOARD_MICROPENDOUS_REV2) || \ |
||||||
|
(BOARD == BOARD_MICROPENDOUS_32U2) || definied(__DOXYGEN__)) |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Microsin AVR-USB162 board. |
||||||
|
* \copydetails Group_BoardInfo_MICROSIN162 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MICROSIN162 MICROSIN162 |
||||||
|
* \brief Board specific information header for the Microsin AVR-USB162 board. |
||||||
|
* |
||||||
|
* Board specific information header for the Microsin AVR-USB162 board (http://microsin.ru/content/view/685/44/).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_MICROSIN162_H__ |
||||||
|
#define __BOARD_MICROSIN162_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the MINIMUS. |
||||||
|
* \copydetails Group_BoardInfo_MINIMUS |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MINIMUS MINIMUS |
||||||
|
* \brief Board specific information header for the MINIMUS. |
||||||
|
* |
||||||
|
* Board specific information header for the MINIMUS. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_MINIMUS_H__ |
||||||
|
#define __BOARD_MINIMUS_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Bitwizard Multio. |
||||||
|
* \copydetails Group_BoardInfo_MULTIO |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_MULTIO MULTIO |
||||||
|
* \brief Board specific information header for the Bitwizard Multio. |
||||||
|
* |
||||||
|
* Board specific information header for the Bitwizard Multio (http://www.bitwizard.nl/wiki/index.php/USB-multio).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_MULTIO_H__ |
||||||
|
#define __BOARD_MULTIO_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Olimex AVR-USB-162 Development Board. |
||||||
|
* \copydetails Group_BoardInfo_OLIMEX162 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_OLIMEX162 OLIMEX162 |
||||||
|
* \brief Board specific information header for the Olimex AVR-USB-162 Development Board. |
||||||
|
* |
||||||
|
* Board specific information header for the Olimex AVR-USB-162 Development Board (http://www.olimex.com/dev/avr-usb-162.html).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_OLIMEX162_H__ |
||||||
|
#define __BOARD_OLIMEX162_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Olimex AVR-USB-32U4 Development Board. |
||||||
|
* \copydetails Group_BoardInfo_OLIMEX32U4 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_OLIMEX32U4 OLIMEX32U4 |
||||||
|
* \brief Board specific information header for the Olimex AVR-USB-32U4 Development Board. |
||||||
|
* |
||||||
|
* Board specific information header for the Olimex AVR-USB-32U4 Development Board (http://www.olimex.com/dev/olimexino-32u4.html).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_OLIMEX32U4_H__ |
||||||
|
#define __BOARD_OLIMEX32U4_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Olimex AVR-ISP-MK2 Development Board. |
||||||
|
* \copydetails Group_BoardInfo_OLIMEXISPMK2 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_OLIMEXISPMK2 OLIMEXISPMK2 |
||||||
|
* \brief Board specific information header for the Olimex AVR-ISP-MK2 Development Board. |
||||||
|
* |
||||||
|
* Board specific information header for the Olimex AVR-ISP-MK2 Development Board (https://www.olimex.com/dev/avr-isp-mk2.html).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_OLIMEXISPMK2_H__ |
||||||
|
#define __BOARD_OLIMEXISPMK2_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Olimex AVR-USB-T32U4 Development Board. |
||||||
|
* \copydetails Group_BoardInfo_OLIMEXT32U4 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_OLIMEXT32U4 OLIMEXT32U4 |
||||||
|
* \brief Board specific information header for the Olimex AVR-USB-T32U4 Development Board. |
||||||
|
* |
||||||
|
* Board specific information header for the Olimex AVR-USB-T32U4 Development Board (http://www.olimex.com/dev/avr-t32u4.html).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_OLIMEXT32U4_H__ |
||||||
|
#define __BOARD_OLIMEXT32U4_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel RZUSBSTICK. |
||||||
|
* \copydetails Group_BoardInfo_RZUSBSTICK |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_RZUSBSTICK RZUSBSTICK |
||||||
|
* \brief Board specific information header for the Atmel RZUSBSTICK. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel RZUSBSTICK. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_RZUSBSTICK_H__ |
||||||
|
#define __BOARD_RZUSBSTICK_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Sparkfun ATMEGA8U2 breakout board. |
||||||
|
* \copydetails Group_BoardInfo_SPARKFUN8U2 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_SPARKFUN8U2 SPARKFUN8U2 |
||||||
|
* \brief Board specific information header for the Sparkfun ATMEGA8U2 breakout board. |
||||||
|
* |
||||||
|
* Board specific information header for the Sparkfun ATMEGA8U2 breakout board (http://www.sparkfun.com/products/10277).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_SPARKFUN8U2_H__ |
||||||
|
#define __BOARD_SPARKFUN8U2_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Dimex Stange-ISP board. |
||||||
|
* \copydetails Group_BoardInfo_STANGE_ISP |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_STANGE_ISP STANGE_ISP |
||||||
|
* \brief Board specific information header for the Dimex Stange-ISP board. |
||||||
|
* |
||||||
|
* Board specific information header for the Dimex Stange-ISP board (http://www.diamex.de/dxshop/USB-ISP-Programmer-fuer-Atmel-AVR).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_STANGE_ISP_H__ |
||||||
|
#define __BOARD_STANGE_ISP_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,90 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel STK525. |
||||||
|
* \copydetails Group_BoardInfo_STK525 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_STK525 STK525 |
||||||
|
* \brief Board specific information header for the Atmel STK525. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel STK525. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_STK525_H__ |
||||||
|
#define __BOARD_STK525_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Dataflash.h" |
||||||
|
#include "../../Joystick.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Dataflash mounted. */ |
||||||
|
#define BOARD_HAS_DATAFLASH |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Joystick mounted. */ |
||||||
|
#define BOARD_HAS_JOYSTICK |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,90 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel STK526. |
||||||
|
* \copydetails Group_BoardInfo_STK526 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_STK526 STK526 |
||||||
|
* \brief Board specific information header for the Atmel STK526. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel STK526. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_STK526_H__ |
||||||
|
#define __BOARD_STK526_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Dataflash.h" |
||||||
|
#include "../../Joystick.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Dataflash mounted. */ |
||||||
|
#define BOARD_HAS_DATAFLASH |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Joystick mounted. */ |
||||||
|
#define BOARD_HAS_JOYSTICK |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,85 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the PJRC Teensy 1.x/2.x boards. |
||||||
|
* \copydetails Group_BoardInfo_TEENSY |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_TEENSY2 TEENSY2 |
||||||
|
* \brief Board specific information header for the PJRC Teensy 2 boards. |
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_TEENSY for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_TEENSY TEENSY |
||||||
|
* \brief Board specific information header for the PJRC Teensy 1.x/2.x boards. |
||||||
|
* |
||||||
|
* Board specific information header for the PJRC Teensy boards (http://www.pjrc.com/teensy/index.html).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_TEENSY_H__ |
||||||
|
#define __BOARD_TEENSY_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the TUL. |
||||||
|
* \copydetails Group_BoardInfo_TUL |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_TUL TUL |
||||||
|
* \brief Board specific information header for the TUL. |
||||||
|
* |
||||||
|
* Board specific information header for the Busware TUL (http://www.busware.de/tiki-index.php?page=TUL).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_TUL_H__ |
||||||
|
#define __BOARD_TUL_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the UDIP. |
||||||
|
* \copydetails Group_BoardInfo_UDIP |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_UDIP UDIP |
||||||
|
* \brief Board specific information header for the UDIP. |
||||||
|
* |
||||||
|
* Board specific information header for the Linnix UDIP (http://linnix.com/udip/).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_UDIP_H__ |
||||||
|
#define __BOARD_UDIP_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,78 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Arduino Uno. |
||||||
|
* \copydetails Group_BoardInfo_UNO |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_UNO UNO |
||||||
|
* \brief Board specific information header for the Arduino Uno. |
||||||
|
* |
||||||
|
* Board specific information header for the Arduino Uno (http://arduino.cc/en/Main/ArduinoBoardUno).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_UNO_H__ |
||||||
|
#define __BOARD_UNO_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,105 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific LED driver header for the Xevelabs USB2AX. |
||||||
|
* \copydetails Group_BoardInfo_USB2AX |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_USB2AX_V31 USB2AX_V31 |
||||||
|
* \brief Board specific information header for the Xevelabs USB2AX revision 3.1. |
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_USB2AX for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_USB2AX_V3 USB2AX_V3 |
||||||
|
* \briefBoard specific information header for the Xevelabs USB2AX revision 3. |
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_USB2AX for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_USB2AX USB2AX |
||||||
|
* \brief Board specific information header for the Xevelabs USB2AX. |
||||||
|
* |
||||||
|
* Board specific information header for the Xevelabs USB2AX (http://paranoidstudio.assembla.com/wiki/show/paranoidstudio/USB2AX).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_USB2AX_H__ |
||||||
|
#define __BOARD_USB2AX_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
#if (BOARD == BOARD_USB2AX) || (BOARD == BOARD_USB2AX_V3) || \ |
||||||
|
defined(__DOXYGEN__) |
||||||
|
#include "../../Buttons.h" |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
#endif |
||||||
|
|
||||||
|
#if ((BOARD == BOARD_USB2AX) || (BOARD == BOARD_USB2AX_V3) || \ |
||||||
|
(BOARD == BOARD_USB2AX_V31) || defined(__DOXYGEN__)) |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Kernel Concepts USBFOO. |
||||||
|
* \copydetails Group_BoardInfo_USBFOO |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_USBFOO USBFOO |
||||||
|
* \brief Board specific information header for the Kernel Concepts USBFOO. |
||||||
|
* |
||||||
|
* Board specific information header for the Kernel Concepts USBFOO (http://shop.kernelconcepts.de/product_info.php?products_id=102).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_USBFOO_H__ |
||||||
|
#define __BOARD_USBFOO_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,90 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel USBKEY. |
||||||
|
* \copydetails Group_BoardInfo_USBKEY |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_USBKEY USBKEY |
||||||
|
* \brief Board specific information header for the Atmel USBKEY. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel USBKEY. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_USBKEY_H__ |
||||||
|
#define __BOARD_USBKEY_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Dataflash.h" |
||||||
|
#include "../../Joystick.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Dataflash mounted. */ |
||||||
|
#define BOARD_HAS_DATAFLASH |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Joystick mounted. */ |
||||||
|
#define BOARD_HAS_JOYSTICK |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for Tom's USBTINY MKII. |
||||||
|
* \copydetails Group_BoardInfo_USBTINYMKII |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_USBTINYMKII USBTINYMKII |
||||||
|
* \brief Board specific information header for Tom's USBTINY MKII. |
||||||
|
* |
||||||
|
* Board specific information header for Tom's USBTINY MKII (http://tom-itx.dyndns.org:81/~webpage/).
|
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_USBTINYMKII_H__ |
||||||
|
#define __BOARD_USBTINYMKII_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,89 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the original Atmel XPLAIN. |
||||||
|
* \copydetails Group_BoardInfo_XPLAIN |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_XPLAIN_REV1 XPLAIN_REV1 |
||||||
|
* \brief Board specific information header for the original Atmel XPLAIN, revision 1. |
||||||
|
* |
||||||
|
* See \ref Group_BoardInfo_XPLAIN for more details. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_XPLAIN XPLAIN |
||||||
|
* \brief Board specific information header for the original Atmel XPLAIN. |
||||||
|
* |
||||||
|
* Board specific information header for the original Atmel XPLAIN. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_XPLAIN_H__ |
||||||
|
#define __BOARD_XPLAIN_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Dataflash.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Dataflash mounted. */ |
||||||
|
#define BOARD_HAS_DATAFLASH |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,159 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board hardware information driver. |
||||||
|
* |
||||||
|
* This file is the master dispatch header file for the board-specific information driver, to give information |
||||||
|
* on the hardware contained on a specific board. |
||||||
|
* |
||||||
|
* User code should include this file, which will in turn include the correct board driver header file for the |
||||||
|
* currently selected board. |
||||||
|
* |
||||||
|
* If the \c BOARD value is set to \c BOARD_USER, this will include the \c /Board/Board.h file in the user project |
||||||
|
* directory. |
||||||
|
* |
||||||
|
* For possible \c BOARD makefile values, see \ref Group_BoardTypes. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardDrivers
|
||||||
|
* \defgroup Group_BoardInfo Board Information Driver - LUFA/Drivers/Board/Board.h |
||||||
|
* \brief Board hardware information driver. |
||||||
|
* |
||||||
|
* \section Sec_Dependencies Module Source Dependencies |
||||||
|
* The following files must be built with any user project that uses this module: |
||||||
|
* - None |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_H__ |
||||||
|
#define __BOARD_H__ |
||||||
|
|
||||||
|
/* Macros: */ |
||||||
|
#define __INCLUDE_FROM_BOARD_H |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../Common/Common.h" |
||||||
|
|
||||||
|
#if (BOARD == BOARD_USBKEY) |
||||||
|
#include "AVR8/USBKEY/Board.h" |
||||||
|
#elif (BOARD == BOARD_STK525) |
||||||
|
#include "AVR8/STK525/Board.h" |
||||||
|
#elif (BOARD == BOARD_STK526) |
||||||
|
#include "AVR8/STK526/Board.h" |
||||||
|
#elif (BOARD == BOARD_RZUSBSTICK) |
||||||
|
#include "AVR8/RZUSBSTICK/Board.h" |
||||||
|
#elif (BOARD == BOARD_ATAVRUSBRF01) |
||||||
|
#include "AVR8/ATAVRUSBRF01/Board.h" |
||||||
|
#elif ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1)) |
||||||
|
#include "AVR8/XPLAIN/Board.h" |
||||||
|
#elif (BOARD == BOARD_BUMBLEB) |
||||||
|
#include "AVR8/BUMBLEB/Board.h" |
||||||
|
#elif (BOARD == BOARD_EVK527) |
||||||
|
#include "AVR8/EVK527/Board.h" |
||||||
|
#elif ((BOARD == BOARD_TEENSY) || (BOARD == BOARD_TEENSY2)) |
||||||
|
#include "AVR8/TEENSY/Board.h" |
||||||
|
#elif (BOARD == BOARD_USBTINYMKII) |
||||||
|
#include "AVR8/USBTINYMKII/Board.h" |
||||||
|
#elif (BOARD == BOARD_BENITO) |
||||||
|
#include "AVR8/BENITO/Board.h" |
||||||
|
#elif (BOARD == BOARD_JMDBU2) |
||||||
|
#include "AVR8/JMDBU2/Board.h" |
||||||
|
#elif (BOARD == BOARD_OLIMEX162) |
||||||
|
#include "AVR8/OLIMEX162/Board.h" |
||||||
|
#elif (BOARD == BOARD_USBFOO) |
||||||
|
#include "AVR8/USBFOO/Board.h" |
||||||
|
#elif (BOARD == BOARD_UDIP) |
||||||
|
#include "AVR8/UDIP/Board.h" |
||||||
|
#elif (BOARD == BOARD_BUI) |
||||||
|
#include "AVR8/BUI/Board.h" |
||||||
|
#elif (BOARD == BOARD_UNO) |
||||||
|
#include "AVR8/UNO/Board.h" |
||||||
|
#elif (BOARD == BOARD_CULV3) |
||||||
|
#include "AVR8/CULV3/Board.h" |
||||||
|
#elif (BOARD == BOARD_BLACKCAT) |
||||||
|
#include "AVR8/BLACKCAT/Board.h" |
||||||
|
#elif (BOARD == BOARD_MAXIMUS) |
||||||
|
#include "AVR8/MAXIMUS/Board.h" |
||||||
|
#elif (BOARD == BOARD_MINIMUS) |
||||||
|
#include "AVR8/MINIMUS/Board.h" |
||||||
|
#elif (BOARD == BOARD_ADAFRUITU4) |
||||||
|
#include "AVR8/ADAFRUITU4/Board.h" |
||||||
|
#elif (BOARD == BOARD_MICROSIN162) |
||||||
|
#include "AVR8/MICROSIN162/Board.h" |
||||||
|
#elif (BOARD == BOARD_SPARKFUN8U2) |
||||||
|
#include "AVR8/SPARKFUN8U2/Board.h" |
||||||
|
#elif (BOARD == BOARD_EVK1101) |
||||||
|
#include "UC3/EVK1101/Board.h" |
||||||
|
#elif (BOARD == BOARD_TUL) |
||||||
|
#include "AVR8/TUL/Board.h" |
||||||
|
#elif (BOARD == BOARD_EVK1100) |
||||||
|
#include "UC3/EVK1100/Board.h" |
||||||
|
#elif (BOARD == BOARD_EVK1104) |
||||||
|
#include "UC3/EVK1104/Board.h" |
||||||
|
#elif (BOARD == BOARD_A3BU_XPLAINED) |
||||||
|
#include "XMEGA/A3BU_XPLAINED/Board.h" |
||||||
|
#elif ((BOARD == BOARD_USB2AX) || (BOARD == BOARD_USB2AX_V3) || (BOARD == BOARD_USB2AX_V31)) |
||||||
|
#include "AVR8/USB2AX/Board.h" |
||||||
|
#elif ((BOARD == BOARD_MICROPENDOUS_REV1) || (BOARD == BOARD_MICROPENDOUS_REV2) || \ |
||||||
|
(BOARD == BOARD_MICROPENDOUS_32U2) || (BOARD == BOARD_MICROPENDOUS_A) || \
|
||||||
|
(BOARD == BOARD_MICROPENDOUS_1) || (BOARD == BOARD_MICROPENDOUS_2) || \
|
||||||
|
(BOARD == BOARD_MICROPENDOUS_30 || (BOARD == BOARD_MICROPENDOUS_4) || \
|
||||||
|
(BOARD == BOARD_MICROPENDOUS_DIP)) |
||||||
|
#include "AVR8/MICROPENDOUS/Board.h" |
||||||
|
#elif (BOARD == BOARD_B1_XPLAINED) |
||||||
|
#include "XMEGA/B1_XPLAINED/Board.h" |
||||||
|
#elif (BOARD == BOARD_MULTIO) |
||||||
|
#include "AVR8/MULTIO/Board.h" |
||||||
|
#elif (BOARD == BOARD_BIGMULTIO) |
||||||
|
#include "AVR8/BIGMULTIO/Board.h" |
||||||
|
#elif (BOARD == BOARD_DUCE) |
||||||
|
#include "AVR8/DUCE/Board.h" |
||||||
|
#elif (BOARD == BOARD_OLIMEX32U4) |
||||||
|
#include "AVR8/OLIMEX32U4/Board.h" |
||||||
|
#elif (BOARD == BOARD_OLIMEXT32U4) |
||||||
|
#include "AVR8/OLIMEXT32U4/Board.h" |
||||||
|
#elif (BOARD == BOARD_OLIMEXISPMK2) |
||||||
|
#include "AVR8/OLIMEXISPMK2/Board.h" |
||||||
|
#elif (BOARD == BOARD_LEONARDO) |
||||||
|
#include "AVR8/LEONARDO/Board.h" |
||||||
|
#elif (BOARD == BOARD_UC3A3_XPLAINED) |
||||||
|
#include "UC3/UC3A3_XPLAINED/Board.h" |
||||||
|
#elif (BOARD == BOARD_STANGE_ISP) |
||||||
|
#include "AVR8/STANGE_ISP/Board.h" |
||||||
|
#else |
||||||
|
#include "Board/Board.h" |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,86 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel EVK1100. |
||||||
|
* \copydetails Group_BoardInfo_EVK1100 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_EVK1100 EVK1100 |
||||||
|
* \brief Board specific information header for the Atmel Atmel EVK1100. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel Atmel EVK1100. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_EVK1100_H__ |
||||||
|
#define __BOARD_EVK1100_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Joystick.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Joystick mounted. */ |
||||||
|
#define BOARD_HAS_JOYSTICK |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,86 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel EVK1101. |
||||||
|
* \copydetails Group_BoardInfo_EVK1101 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_EVK1101 EVK1101 |
||||||
|
* \brief Board specific information header for the Atmel Atmel EVK1101. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel Atmel EVK1101. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_EVK1101_H__ |
||||||
|
#define __BOARD_EVK1101_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Joystick.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Joystick mounted. */ |
||||||
|
#define BOARD_HAS_JOYSTICK |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel EVK1104. |
||||||
|
* \copydetails Group_BoardInfo_EVK1104 |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_EVK1104 EVK1104 |
||||||
|
* \brief Board specific information header for the Atmel Atmel EVK1104. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel Atmel EVK1104. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_EVK1104_H__ |
||||||
|
#define __BOARD_EVK1104_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel UC3-A3 Xplained. |
||||||
|
* \copydetails Group_BoardInfo_UC3_A3_XPLAINED |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_UC3_A3_XPLAINED UC3_A3_XPLAINED |
||||||
|
* \brief Board specific information header for the Atmel UC3-A3 Xplained. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel UC3-A3 Xplained. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_UC3_A3_XPLAINED_H__ |
||||||
|
#define __BOARD_UC3_A3_XPLAINED_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,86 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel XMEGA A3BU Xplained. |
||||||
|
* \copydetails Group_BoardInfo_A3BU_XPLAINED |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_A3BU_XPLAINED A3BU_XPLAINED |
||||||
|
* \brief Board specific information header for the Atmel XMEGA A3BU Xplained. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel XMEGA A3BU Xplained. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_A3BU_XPLAINED_H__ |
||||||
|
#define __BOARD_A3BU_XPLAINED_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Dataflash.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Dataflash mounted. */ |
||||||
|
#define BOARD_HAS_DATAFLASH |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
@ -0,0 +1,86 @@ |
|||||||
|
/*
|
||||||
|
LUFA Library |
||||||
|
Copyright (C) Dean Camera, 2013. |
||||||
|
|
||||||
|
dean [at] fourwalledcubicle [dot] com |
||||||
|
www.lufa-lib.org |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) |
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this |
||||||
|
software and its documentation for any purpose is hereby granted |
||||||
|
without fee, 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 disclaims 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
|
||||||
|
* \brief Board specific information header for the Atmel XMEGA B1 Xplained. |
||||||
|
* \copydetails Group_BoardInfo_B1_XPLAINED |
||||||
|
* |
||||||
|
* \note This file should not be included directly. It is automatically included as needed by the Board driver |
||||||
|
* dispatch header located in LUFA/Drivers/Board/Board.h. |
||||||
|
*/ |
||||||
|
|
||||||
|
/** \ingroup Group_BoardInfo
|
||||||
|
* \defgroup Group_BoardInfo_B1_XPLAINED B1_XPLAINED |
||||||
|
* \brief Board specific information header for the Atmel XMEGA B1 Xplained. |
||||||
|
* |
||||||
|
* Board specific information header for the Atmel XMEGA B1 Xplained. |
||||||
|
* |
||||||
|
* @{ |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __BOARD_B1_XPLAINED_H__ |
||||||
|
#define __BOARD_B1_XPLAINED_H__ |
||||||
|
|
||||||
|
/* Includes: */ |
||||||
|
#include "../../../../Common/Common.h" |
||||||
|
#include "../../Buttons.h" |
||||||
|
#include "../../Dataflash.h" |
||||||
|
#include "../../LEDs.h" |
||||||
|
|
||||||
|
/* Enable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
extern "C" { |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Preprocessor Checks: */ |
||||||
|
#if !defined(__INCLUDE_FROM_BOARD_H) |
||||||
|
#error Do not include this file directly. Include LUFA/Drivers/Board/Board.h instead. |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Public Interface - May be used in end-application: */ |
||||||
|
/* Macros: */ |
||||||
|
/** Indicates the board has a hardware Buttons mounted. */ |
||||||
|
#define BOARD_HAS_BUTTONS |
||||||
|
|
||||||
|
/** Indicates the board has a hardware Dataflash mounted. */ |
||||||
|
#define BOARD_HAS_DATAFLASH |
||||||
|
|
||||||
|
/** Indicates the board has a hardware LEDs mounted. */ |
||||||
|
#define BOARD_HAS_LEDS |
||||||
|
|
||||||
|
/* Disable C linkage for C++ Compilers: */ |
||||||
|
#if defined(__cplusplus) |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif |
||||||
|
|
||||||
|
/** @} */ |
||||||
|
|
Loading…
Reference in new issue