forked from mfulz_github/qmk_firmware
Add Atmel Studio support for the Arduino Yun and Micro boards.
This commit is contained in:
parent
c69a623652
commit
70f7e6558c
|
@ -11,7 +11,7 @@
|
|||
* - Core:
|
||||
* - Updated the BUILD build system module to add a new COMPILER_PATH optional variable
|
||||
* - Added Serial_IsSendReady() and Serial_IsSendComplete() functions to the Serial hardware peripheral driver
|
||||
* - Added support for the Arduino Yun board (ATMEGA32U4 coprocessor)
|
||||
* - Added support for the Arduino Yun board (ATMEGA32U4 co-processor)
|
||||
* - Added support for the Arduino Micro board
|
||||
* - Library Applications:
|
||||
* - Added new Dual MIDI class driver device demo
|
||||
|
|
|
@ -822,6 +822,32 @@
|
|||
|
||||
<build type="define" name="BOARD" value="BOARD_U2S"/>
|
||||
</module>
|
||||
|
||||
<module type="driver" id="lufa.drivers.board#yun" caption="Board Support - YUN">
|
||||
<build type="doxygen-entry-point" value="Group_BoardInfo_YUN"/>
|
||||
|
||||
<device-support value="atmega32u4"/>
|
||||
|
||||
<require idref="lufa.drivers.board.leds"/>
|
||||
|
||||
<build type="header-file" value="Drivers/Board/AVR8/YUN/Board.h"/>
|
||||
<build type="header-file" value="Drivers/Board/AVR8/YUN/LEDs.h"/>
|
||||
|
||||
<build type="define" name="BOARD" value="BOARD_YUN"/>
|
||||
</module>
|
||||
|
||||
<module type="driver" id="lufa.drivers.board#yun" caption="Board Support - MICRO">
|
||||
<build type="doxygen-entry-point" value="Group_BoardInfo_MICRO"/>
|
||||
|
||||
<device-support value="atmega32u4"/>
|
||||
|
||||
<require idref="lufa.drivers.board.leds"/>
|
||||
|
||||
<build type="header-file" value="Drivers/Board/AVR8/MICRO/Board.h"/>
|
||||
<build type="header-file" value="Drivers/Board/AVR8/MICRO/LEDs.h"/>
|
||||
|
||||
<build type="define" name="BOARD" value="BOARD_MICRO"/>
|
||||
</module>
|
||||
</select-by-config>
|
||||
</asf>
|
||||
</lufa>
|
||||
|
|
Loading…
Reference in New Issue