aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
Commit message (Collapse)AuthorAgeFilesLines
* Fix broken core library Doxygen version number makefile macro.Dean Camera2013-03-201-1/+1
|
* Fix "grep: Version.h: No such file or directory" error when including the ↵Dean Camera2013-03-121-1/+1
| | | | core LUFA library makefile in a legacy makefile.
* Fix invalid module IDs and update VSIX packing script to ensure the database ↵Dean Camera2013-01-101-1/+1
| | | | cache files are always updated.
* Update copyright year to 2013.Dean Camera2013-01-031-1/+1
|
* Add Atmel Studio integration files.Dean Camera2013-01-031-3/+3
|
* Fix include path of the LUFA SOURCES build module from the master build ↵Dean Camera2012-08-271-1/+1
| | | | module when used in a legacy LUFA project makefile.
* Added new doxygen_upgrade and doxygen_create targets to the DOXYGEN build ↵Dean Camera2012-08-181-1/+4
| | | | system module. Clean up CORE build system module.
* Fix up main library core makefile include paths.Dean Camera2012-07-141-3/+3
|
* Fix LUFA_SRC_PLATFORM makefile variable in the SOURCES build module to use ↵Dean Camera2012-07-051-2/+2
| | | | LUFA_ROOT_PATH rather than LUFA_PATH.
* Minor makefile fixes - add phony targets, remove silence switch from the ↵Dean Camera2012-06-181-0/+3
| | | | root makefile and add missing build modules to the ClassDriver VirtualSerial device demo.
* Add ability to generate SYM files in the BUILD module. Clean up build system ↵Dean Camera2012-06-111-0/+3
| | | | output to be slightly more human readable.
* Fix up core library makefile clean target to properly remove dependency files.Dean Camera2012-06-101-3/+3
|
* Make sure the main library core makefile does not interfere with the Doxygen ↵Dean Camera2012-06-101-7/+3
| | | | module configuration if included in a legacy makefile.
* Fix BUILD module so that user flags are applied after all auto-generated ↵Dean Camera2012-06-061-1/+1
| | | | flags, ensure dependency files are generated with a .d extension rather than a .o.d extension, allow use of full part names ("at32uc3a0256") instead of GCC truncted part names ("uc3a0256").
* Fix typo in the UC3 host pipe driver. Improve library TAR export exclusion ↵Dean Camera2012-06-061-1/+1
| | | | filetype filter.
* Clean up CORE build system module, use simple rather than recursive make ↵Dean Camera2012-06-021-2/+3
| | | | variables for internal constants and $(shell) derived values.
* Add platform driver dispatch header and makefile module source variable.Dean Camera2012-06-021-0/+1
|
* Ensure that USB_DEVICE_ONLY or USB_HOST_ONLY is properly set for devices ↵Dean Camera2012-06-021-2/+2
| | | | that physically do not support a particular mode. Fix main LUFA library makefile default target.
* Update library documentation on the standard LUFA makefile template ↵Dean Camera2012-06-021-2/+6
| | | | configuration.
* Switch over Demos, Bootloaders and Projects to the new and improved build ↵Dean Camera2012-06-011-87/+25
| | | | system.
* Add missing documentation to custom BuiltTest hardware mapping files. Fix up ↵Dean Camera2012-05-271-1/+1
| | | | old copyright years on some makefiles.
* Remove outdated documentation from the library, minor documentation ↵Dean Camera2012-04-091-40/+40
| | | | improvements.
* Make Doxygen fail for any Doxygen output other than unsupported tags (as ↵Dean Camera2012-04-091-2/+4
| | | | | | these are somewhat benign). Improve exclusion list for the main library export_tar rule to exclude any compiled library files from the export.
* Removed the old pseudo-scheduler from the library as it was unused and ↵Dean Camera2012-04-081-3/+1
| | | | deprecated since the 090810 release.
* Add additional specific sub-family parts to the ModuleTest build test as ↵Dean Camera2012-04-081-5/+7
| | | | | | these may have minor header file differences to their standard family cousins. Clean up of main library Makefile to extract out the library version once into a make variable for easy reference.
* Oops - fix broken makefile tar rule.Dean Camera2012-04-071-1/+1
|
* Fix up Doxygen documentation directives to allow for generation of ↵Dean Camera2012-04-071-0/+1
| | | | documentation when the library code root folder is not "LUFA".
* Add extra LUFA TAR archive export exclusions.Dean Camera2012-04-071-1/+1
|
* Add main library makefile target "export_tar" to export a copy of the ↵Dean Camera2012-04-071-1/+6
| | | | library codebase in TAR format, for each integration into user applications.
* Only abort Doxygen documentation generation if a non-unsupported tag warning ↵Dean Camera2012-03-091-1/+1
| | | | is encountered.
* Update Doxygen documentation build scripts to fail if any warnings are ↵Dean Camera2012-03-091-1/+5
| | | | generated.
* Add new Android Open Accessory class driver to the library core and add a ↵Dean Camera2011-11-241-26/+27
| | | | new Android Open Accessory Host ClassDriver demo.
* Added Class, ClassDevice, ClassHost and ClassCommon to the internal class ↵Dean Camera2011-11-181-14/+14
| | | | driver source filenames to prevent ambiguities.
* Add project name to the Doxygen makefile target output.Dean Camera2011-09-211-1/+1
|
* Add XMEGA to the LUFA core library makefile's list of architectures, so that ↵Dean Camera2011-07-141-1/+1
| | | | the XMEGA files are properly cleaned on request.
* Add new "checksource" target to the library makefiles, for automated source ↵Dean Camera2011-06-201-1/+3
| | | | file existance checking.
* Added new Host mode Audio Class driver.Dean Camera2011-06-081-12/+13
| | | | Added new EVENT_Audio_StreamStartStopChange() event to the Audio Device Class driver to detect stream start/stop events.
* Copy out the EndpointStream and PipeStream functions to each architecture, ↵Dean Camera2011-05-261-13/+13
| | | | so that each architecture can optimise the stream functions according to the available hardware (such as DMA, where available).
* Add new "version" makefile target to the main LUFA library makefile, to give ↵Dean Camera2011-05-181-1/+4
| | | | an easy way to identify a LUFA release from the command-line.
* Fixed possible invalid program execution when in host mode if corrupt ↵Dean Camera2011-05-141-3/+6
| | | | | | | | descriptor lengths are supplied by the attached device. Minor code cleanups to add const and reformat where missing, as well as abstract out the internal device signature start address into a macro, so that it can be altered to suit particular devices within a single architecture if needed. Add missing documentation to the USB_Device_States_t enum.
* Rename UC3B driver files to UC3, as they are generic to all AVR32 UC3 models.Dean Camera2011-03-131-0/+2
|
* Rename architecture specific driver files, to make them appear with uniquely ↵Dean Camera2011-02-201-27/+27
| | | | identifying filenames in the documentation.
* Initial restructuring of the core USB driver module to support multiple ↵Dean Camera2011-02-191-13/+13
| | | | architectures in the future.
* Add new ARCH option to the makefiles to (eventually) specify the target ↵Dean Camera2011-02-191-2/+7
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Removed SerialStream module, rolled functionality into the base USART Serial ↵Dean Camera2011-01-301-3/+1
| | | | | | | | peripheral driver instead through the new Serial_CreateStream() and Serial_CreateBlockingStream() methods. Renamed the Serial byte send/receive functions to remain consistent with the CDC driver's byte functions. Altered the serial byte receive function to make it non-blocking.
* New HID report item macros (with HID_RI_ prefix) to allow for easy creation ↵Dean Camera2011-01-161-1/+1
| | | | | | | | and editing of HID report descriptors. Changed over all project and demo HID report descriptors to use the new HID report item macros. Moved the HIDParser.c source file to the LUFA/Drivers/USB/Class/Common/ directory from the LUFA/Drivers/USB/Class/Host/.
* Update copyright year on all source files.Dean Camera2011-01-011-1/+1
|
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-281-1/+1
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-3/+3
| | | | tool made by Laszlo Monda
* Minor documentation corrections.Dean Camera2010-09-151-4/+4
|