aboutsummaryrefslogtreecommitdiff
path: root/Bootloaders/CDC/makefile
AgeCommit message (Collapse)Author
2010-04-13Removed invalid dfu and flip related targets from the bootloaders - ↵Dean
bootloaders can only be replaced with an external programmer. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1206 d5102386-fcda-11dd-9fdb-3debd5008f28
2010-02-04New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵Dean
will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver). Spell-check code/comments in the Webserver/AVRISP-MKII projects. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1110 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-12-20Added new NO_DEVICE_SELF_POWER and NO_DEVICE_REMOTE_WAKEUP compile time options.Dean
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@994 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-10-16Fix invalid Event name rule in demo/project makefiles.Dean
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@867 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-09-09Remove USE_NONSTANDARD_DESCRIPTOR_NAMES compile time token, split out ↵Dean
standard descriptors into seperate USB_Descriptor_* and USB_StdDescriptor_* structures so that both can be used within the one project. Add guard to the HID Host Class driver SetProtocol command, to ensure that the device supports boot protocol mode before issuing the request. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@820 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-09-06Add in new invalid event hook check targets to project makefiles to produce ↵Dean
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. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@812 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-08-17Added beginnings of a new AVRISP-MKII clone project.Dean
Added new Endpoint_SetEndpointDirection() macro to set the current endpoint direction for bidirectional endpoints. Renamed internal USB_INT_ENDPOINT_SETUP macro to USB_INT_RXSTPI to fit in with the rest of the interrupt vector macros. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@744 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-08-02Rename TOTAL_NUM_CONFIGURATIONS to FIXED_NUM_CONFIGURATIONS, to match the ↵Dean
existing FIXED_CONTROL_ENDPOINT_SIZE compile time option. Add FIXED_NUM_CONFIGURATIONS to the descriptors of each project using the option. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@712 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-07-28Change project makefiles so that the current target settings and not just ↵Dean
the board selection is printed during the build process. Fix warning in AudioOutput demos when AUDIO_OUT_STEREO output mode is selected. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@694 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-07-28Better solution - change compile time token names to DEVICE_STATE_AS_GPIOR ↵Dean
and HOST_STATE_AS_GPIOR and allow the user to set them to the index of the GPIOR register within the device to use. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@693 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-07-28Added HOST_STATE_AS_GPIOR1 and DEVICE_STATE_AS_GPIOR0 compile time options, ↵Dean
the latter of which is used in the bootloaders, to reduce code size. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@692 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-07-16Added new TOTAL_NUM_CONFIGURATIONS option, removed ↵Dean
USE_SINGLE_DEVICE_CONFIGURATION compile time option (but silently convert it to USE_SINGLE_DEVICE_CONFIGURATION internally for compatibility). Added new USE_FLASH_DESCRIPTORS compile time option. By default, descriptors can now lie in mixed memory spaces (specified by a new parameter to the CALLBACK_USB_GetDescriptor() function) unless one of the USE_*_DESCRIPTORS compile time option is specified. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@649 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-07-11Added incomplete PrinterHost demo application.Dean
Seperated out Lib components of the incomplete BluetoothHost demo application out into a seperate Lib subfolder. Changed F_CLOCK entries in project makefiles to alias to F_CPU by default, as this is the most common case. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@639 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-06-26Optimize vendor/product description string display code in MassStorageHost.Dean
Remove all Host mode class demos other than the CDCHost class driver demo, so that they can be re-added as they are made once the host mode class framework is designed. Fixed USB_Host_SendControlRequest() not re-suspending the USB bus when initial device ready-wait fails. Fixed USB Pad regulator not being disabled on some AVR models when the USB_OPT_REG_DISABLED option is used. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@632 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-06-21Add NO_INTERNAL_SERIAL compile time option to bootloaders to prevent them ↵Dean
from having unneccesary size increases from unused code. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@623 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-06-19Fix makefiles -- the auto-addition of -D switches to each LUFA compile time ↵Dean
option was faulty, due to GNUMake becomming confused by the spaces in the USE_STATIC_OPTIONS lines. Make user add in the switches explicitly instead. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@616 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-06-19Move LUFA compile time options to a new section in the application makefiles ↵Dean
for clarity. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@615 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-06-18Added new USB_Host_ClearPipeStall() convenience function to clear a stall ↵Dean
condition on an attached device's endpoint. Added new USB_Host_GetDeviceDescriptor() convenience function to retrieve the attached device's Device descriptor. Make Pipe_ConfigurePipe() mask the given endpoint number against PIPE_EPNUM_MASK to ensure the endpoint IN direction bit is cleared to prevent endpoint type corruption. Fix documentation mentioning Pipe_GetCurrentToken() function when real name is Pipe_GetPipeToken(). git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@608 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-06-04Minor documentation page updates.Dean
Redocumented all device demos, now that they have changed over to the new USB class drivers. Added C linkage to class drivers for C++ support. Added prefixes to most of the class driver constants to prevent name clashes. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@565 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-06-01Commit of new class abstraction APIs for all device demos other than the ↵Dean
MIDI demo - not documented yet. Removed scheduler and memory allocation libraries. Added new EVENT_USB_StartOfFrame event in the library to indicate the start of each USB frame (when generated). Removed Tx interrupt from the USBtoSerial demo; now sends characters via polling to ensure more time for the Rx interrupt. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@562 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-05-22Deleted StdDescriptors.c, renamed USB_GetDescriptor() to ↵Dean
CALLBACK_USB_GetDescriptor, moved ConfigDescriptor.c/.h from the LUFA/Drivers/USB/Class/ directory to LUFA/Drivers/USB/HighLevel/ in preperation for the new USB class APIs. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@558 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-05-18Rewritten event system to remove all macros, to make user code clearer.Dean
Fixed incorrect ENDPOINT_EPNUM_MASK mask preventing endpoints above EP3 from being selected (thanks to Jonathan Oakley). Removed STREAM_CALLBACK() macro - callbacks now use regular function definitions to clarify user code. Removed DESCRIPTOR_COMPARATOR() macro - comparators should now use regular function definitions to clarify user code. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@554 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-05-04Changed PIPE_CONTROLPIPE_DEFAULT_SIZE from 8 to 64 to try to prevent ↵Dean
problems with faulty devices which do not respect the given wLength value when reading in the device descriptor. Further documentation improvements - removed file view from the main library documentation, replaced file references in the documentation with group references. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@533 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-04-24Endpoint configuration is now refined to give better output when all ↵Dean
configurations have static inputs - removed the now useless STATIC_ENDPOINT_CONFIGURATION compile time token. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@524 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-04-17More documentation changes for better module-level documentation rather than ↵Dean
file-level documentation. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@513 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-03-23Fixed CDC demo not sending an empty packet after each transfer to prevent ↵Dean
the host from buffering incomming data. Altered Project and Bootloader makefiles so that the path to the LUFA library can be set in one place. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@476 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-03-16Added extra output to makefiles to indicate the currently selected BOARD ↵Dean
parameter. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@462 d5102386-fcda-11dd-9fdb-3debd5008f28
2009-03-04Updated makefiles to reflect new dfu-ee programming target invocations ↵Dean
(supplied by Opendous, Inc.). Renamed the ATTR_ALWAYSINLINE function attribute macro to ATTR_ALWAYS_INLINE to match the style of the other function attribute macro names. Added ATTR_ALWAYS_INLINE attribute to several inlined library functions, to ensure they are inlined in all circumstances. Cleanups to Endpoint.h and Pipe.h. Added better documentation for the endpoint and pipe interrupts. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@450 d5102386-fcda-11dd-9fdb-3debd5008f28