forked from mfulz_github/qmk_firmware
Fix missing references to the ANSI terminal driver codes in the USART peripheral driver module.
This commit is contained in:
parent
0878957241
commit
5937a134ab
|
@ -17,6 +17,7 @@
|
||||||
<build type="doxygen-entry-point" value="Group_Serial"/>
|
<build type="doxygen-entry-point" value="Group_Serial"/>
|
||||||
|
|
||||||
<require idref="lufa.common"/>
|
<require idref="lufa.common"/>
|
||||||
|
<require idref="lufa.drivers.misc.ansi"/>
|
||||||
|
|
||||||
<build type="c-source" value="Drivers/Peripheral/AVR8/Serial_AVR8.c"/>
|
<build type="c-source" value="Drivers/Peripheral/AVR8/Serial_AVR8.c"/>
|
||||||
<build type="header-file" value="Drivers/Peripheral/AVR8/Serial_AVR8.h"/>
|
<build type="header-file" value="Drivers/Peripheral/AVR8/Serial_AVR8.h"/>
|
||||||
|
@ -30,6 +31,7 @@
|
||||||
<build type="doxygen-entry-point" value="Group_Serial"/>
|
<build type="doxygen-entry-point" value="Group_Serial"/>
|
||||||
|
|
||||||
<require idref="lufa.common"/>
|
<require idref="lufa.common"/>
|
||||||
|
<require idref="lufa.drivers.misc.ansi"/>
|
||||||
|
|
||||||
<build type="c-source" value="Drivers/Peripheral/XMEGA/Serial_XMEGA.c"/>
|
<build type="c-source" value="Drivers/Peripheral/XMEGA/Serial_XMEGA.c"/>
|
||||||
<build type="header-file" value="Drivers/Peripheral/XMEGA/Serial_XMEGA.h"/>
|
<build type="header-file" value="Drivers/Peripheral/XMEGA/Serial_XMEGA.h"/>
|
||||||
|
@ -43,6 +45,7 @@
|
||||||
<build type="doxygen-entry-point" value="Group_Serial"/>
|
<build type="doxygen-entry-point" value="Group_Serial"/>
|
||||||
|
|
||||||
<require idref="lufa.common"/>
|
<require idref="lufa.common"/>
|
||||||
|
<require idref="lufa.drivers.misc.ansi"/>
|
||||||
|
|
||||||
<info type="gui-flag" value="hidden"/>
|
<info type="gui-flag" value="hidden"/>
|
||||||
</module>
|
</module>
|
||||||
|
@ -189,4 +192,4 @@
|
||||||
</module>
|
</module>
|
||||||
</select-by-device>
|
</select-by-device>
|
||||||
</asf>
|
</asf>
|
||||||
</lufa>
|
</lufa>
|
||||||
|
|
4
makefile
4
makefile
|
@ -9,7 +9,7 @@
|
||||||
# Makefile to build the LUFA library, projects and demos.
|
# Makefile to build the LUFA library, projects and demos.
|
||||||
|
|
||||||
# Call with "make all" to rebuild everything, "make clean" to clean everything,
|
# Call with "make all" to rebuild everything, "make clean" to clean everything,
|
||||||
# "make mostlyclean" to remove all intermediatary files but preserve any binaries,
|
# "make mostlyclean" to remove all intermediary files but preserve any binaries,
|
||||||
# "make doxygen" to document everything with Doxygen (if installed). Call
|
# "make doxygen" to document everything with Doxygen (if installed). Call
|
||||||
# "make help" for additional target build information within a specific project.
|
# "make help" for additional target build information within a specific project.
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ all:
|
||||||
%:
|
%:
|
||||||
@echo Executing \"make $@\" on all LUFA library elements.
|
@echo Executing \"make $@\" on all LUFA library elements.
|
||||||
@echo
|
@echo
|
||||||
$(MAKE) -C LUFA $@
|
$(MAKE) -C LUFA $@
|
||||||
$(MAKE) -C Demos $@
|
$(MAKE) -C Demos $@
|
||||||
$(MAKE) -C Projects $@
|
$(MAKE) -C Projects $@
|
||||||
$(MAKE) -C Bootloaders $@
|
$(MAKE) -C Bootloaders $@
|
||||||
|
|
Loading…
Reference in New Issue