forked from mfulz_github/qmk_firmware
Added board hardware driver support for the Maximus board (thanks to the PSGroove team).
This commit is contained in:
parent
cb298295fb
commit
b4a02fa29d
File diff suppressed because one or more lines are too long
|
@ -125,6 +125,9 @@
|
|||
/** Selects the Blackcat USB JTAG specific board drivers, including the driver for the board LEDs. */
|
||||
#define BOARD_BLACKCAT 20
|
||||
|
||||
/** Selects the Maximus specific board drivers, including the driver for the board LEDs. */
|
||||
#define BOARD_MAXIMUS 21
|
||||
|
||||
#if !defined(__DOXYGEN__)
|
||||
#define BOARD_ BOARD_NONE
|
||||
|
||||
|
|
|
@ -129,6 +129,8 @@
|
|||
#include "CULV3/LEDs.h"
|
||||
#elif (BOARD == BOARD_BLACKCAT)
|
||||
#include "BLACKCAT/LEDs.h"
|
||||
#elif (BOARD == BOARD_MAXIMUS)
|
||||
#include "MAXIMUS/LEDs.h"
|
||||
#elif (BOARD == BOARD_USER)
|
||||
#include "Board/LEDs.h"
|
||||
#endif
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
* - Added board hardware driver support for the Arduino Uno development board
|
||||
* - Added board hardware driver support for the Busware CUL V3 868MHZ radio board (thanks to Dirk Tostmann)
|
||||
* - Added board hardware driver support for the Blackcat USB JTAG board (thanks to the PSGroove team)
|
||||
* - Added board hardware driver support for the Maximus board (thanks to the PSGroove team)
|
||||
*
|
||||
* <b>Changed:</b>
|
||||
* - Removed complicated logic for the Endpoint_ConfigureEndpoint() function to use inlined or function called versions
|
||||
|
|
|
@ -42,7 +42,8 @@
|
|||
* - Busware BUI
|
||||
* - Busware CUL V3
|
||||
* - Arduino Uno
|
||||
* - Blackcat USB JTAG
|
||||
* - TCNISO Blackcat USB JTAG
|
||||
* - Maximus USB
|
||||
* - Any Other Custom User Boards (with Board Drivers if desired, see \ref Page_WritingBoardDrivers)
|
||||
*/
|
||||
|
||||
|
|
Loading…
Reference in New Issue