mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-09-10 17:15:43 +00:00
Add in new invalid event hook check targets to project makefiles to produce compilation errors when invalid event names are used in a project.
Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles (thanks to Opendous Inc.) Fix allowable F_CPU values comment in project makefiles.
This commit is contained in:
@@ -37,6 +37,8 @@
|
||||
* - The HID report parser now always processed FEATURE items - HID_ENABLE_FEATURE_PROCESSING token now has no effect
|
||||
* - The HID report parser now always ignores constant-data items, HID_INCLUDE_CONSTANT_DATA_ITEMS token now has no effect
|
||||
* - The Benito Programmer project now has its own unique VID/PID pair allocated from the Atmel donated LUFA VID/PID pool
|
||||
* - Add in new invalid event hook check targets to project makefiles to produce compilation errors when invalid event names
|
||||
* are used in a project
|
||||
*
|
||||
* <b>Fixed:</b>
|
||||
* - Fixed possible lockup in the CDC device class driver, when the host sends data that is a multiple of the
|
||||
@@ -56,6 +58,8 @@
|
||||
* - Fixed StillImageHost not correctly freezing and unfreezing data pipes while waiting for a response block header
|
||||
* - Fixed error in PrinterHost preventing the full page data from being sent to the attached device
|
||||
* - CDC based demos and project now work under 64 bit versions of Windows (thanks to Ronny Hanson, Thomas Bleeker)
|
||||
* - Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles (thanks to Opendous Inc.)
|
||||
* - Fix allowable F_CPU values comment in project makefiles
|
||||
*
|
||||
*
|
||||
* \section Sec_ChangeLog090810 Version 090810
|
||||
|
||||
@@ -13,9 +13,6 @@
|
||||
*
|
||||
* <b>Targeted for This Release:</b>
|
||||
* - Finish HID and Still Image Host Mode Class Drivers, add demo summaries
|
||||
* - Re-add in flip, flip-ee, dfu and dfu-ee targets to project makefiles
|
||||
* - Add in new invalid event hook check targets to project makefiles
|
||||
* - Fix allowable F_CPU values comment in project makefiles
|
||||
*
|
||||
* <b>Targeted for Future Releases:</b>
|
||||
* - Add hub support to match Atmel's stack
|
||||
|
||||
@@ -33,10 +33,18 @@ LUFA_SRC_FILES = ./Drivers/USB/LowLevel/DevChapter9.c \
|
||||
./Drivers/Peripheral/Serial.c \
|
||||
./Drivers/Peripheral/SerialStream.c \
|
||||
|
||||
all:
|
||||
|
||||
LUFA_Events.lst:
|
||||
@echo
|
||||
@echo Generating LUFA event name list...
|
||||
@$(shell) cat `find ./ -name "*.h"` | egrep "EVENT_[^\(]*\(" | \
|
||||
sed -n -e 's/^.*EVENT_/EVENT_/p' | \
|
||||
cut -d'(' -f1 | sort | uniq > LUFA_Events.lst
|
||||
|
||||
all: LUFA_Events.lst
|
||||
|
||||
clean:
|
||||
rm -f $(LUFA_SRC_FILES:%.c=%.o)
|
||||
rm -f LUFA_Events.lst
|
||||
|
||||
clean_list:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user