Added CDC_Device_Flush() command to the CDC Device mode class driver.
[pub/USBasp.git] / LUFA / Drivers / Board / Buttons.h
index 46d1473..e1d2346 100644 (file)
@@ -48,7 +48,9 @@
  *    - None\r
  *\r
  *  \section Module Description\r
- *  Functions, macros, variables, enums and types related to the control of physical board GPIO buttons.\r
+ *  Hardware buttons driver. This provides an easy to use driver for the hardware buttons present on many boards.\r
+ *  It provides a way to easily configure and check the status of all the buttons on the board so that appropriate\r
+ *  actions can be taken.\r
  *\r
  *  If the BOARD value is set to BOARD_USER, this will include the /Board/Dataflash.h file in the user project\r
  *  directory. Otherwise, it will include the appropriate built in board driver header file.\r
        #if !defined(BOARD)\r
                #error BOARD must be set in makefile to a value specified in BoardTypes.h.\r
        #elif (BOARD == BOARD_USBKEY)\r
-               #include "USBKEY/BUTTONS.h"\r
+               #include "USBKEY/Buttons.h"\r
        #elif (BOARD == BOARD_STK525)\r
-               #include "STK525/BUTTONS.h"\r
+               #include "STK525/Buttons.h"\r
        #elif (BOARD == BOARD_STK526)\r
-               #include "STK526/BUTTONS.h"\r
+               #include "STK526/Buttons.h"\r
        #elif (BOARD == BOARD_ATAVRUSBRF01)\r
-               #include "ATAVRUSBRF01/BUTTONS.h"\r
+               #include "ATAVRUSBRF01/Buttons.h"\r
        #elif (BOARD == BOARD_USER)\r
-               #include "Board/BUTTONS.h"              \r
+               #include "Board/Buttons.h"              \r
        #else\r
                #error The selected board does not contain any GPIO buttons.\r
        #endif\r